コード例 #1
0
 @org.junit.Test
 public void test_jobsAdaptor() throws Exception {
   Jobs jobs = new LocalAdaptor(Util.createXenonEngine(null), null).jobsAdaptor();
   assert (jobs != null);
 }
コード例 #2
0
 @org.junit.Test
 public void test_filesAdaptor() throws Exception {
   Files files = new LocalAdaptor(Util.createXenonEngine(null), null).filesAdaptor();
   assert (files != null);
 }
コード例 #3
0
 @org.junit.Test
 public void test_credentialsAdaptor() throws Exception {
   new LocalAdaptor(Util.createXenonEngine(null), null).credentialsAdaptor();
 }
コード例 #4
0
 @org.junit.Test
 public void test_getSupportedProperties() throws Exception {
   XenonPropertyDescription[] p =
       new LocalAdaptor(Util.createXenonEngine(null), null).getSupportedProperties();
   assert (p != null);
 }
コード例 #5
0
 @org.junit.Test
 public void test_supports_correct_local() throws Exception {
   boolean value = new LocalAdaptor(Util.createXenonEngine(null), null).supports("local");
   assert (value);
 }
コード例 #6
0
 @org.junit.Test
 public void test_supports_wrong() throws Exception {
   boolean value = new LocalAdaptor(Util.createXenonEngine(null), null).supports("ssh");
   assert (!value);
 }