@org.junit.Test public void test_jobsAdaptor() throws Exception { Jobs jobs = new LocalAdaptor(Util.createXenonEngine(null), null).jobsAdaptor(); assert (jobs != null); }
@org.junit.Test public void test_filesAdaptor() throws Exception { Files files = new LocalAdaptor(Util.createXenonEngine(null), null).filesAdaptor(); assert (files != null); }
@org.junit.Test public void test_credentialsAdaptor() throws Exception { new LocalAdaptor(Util.createXenonEngine(null), null).credentialsAdaptor(); }
@org.junit.Test public void test_getSupportedProperties() throws Exception { XenonPropertyDescription[] p = new LocalAdaptor(Util.createXenonEngine(null), null).getSupportedProperties(); assert (p != null); }
@org.junit.Test public void test_supports_correct_local() throws Exception { boolean value = new LocalAdaptor(Util.createXenonEngine(null), null).supports("local"); assert (value); }
@org.junit.Test public void test_supports_wrong() throws Exception { boolean value = new LocalAdaptor(Util.createXenonEngine(null), null).supports("ssh"); assert (!value); }