@@ -56,7 +56,7 @@ private boolean serviceHasWebPage(String service) {
56
56
57
57
private boolean serviceInterfaceTest (String service ) throws IOException {
58
58
// see if we can start/stop and release the service.
59
-
59
+
60
60
// set a configuration path
61
61
Runtime .setConfig ("serviceInterfaceTest" );
62
62
@@ -67,7 +67,7 @@ private boolean serviceInterfaceTest(String service) throws IOException {
67
67
}
68
68
System .out .println ("Service Test:" + service );
69
69
70
- if (service .equals ("As5048AEncoder" )){
70
+ if (service .equals ("As5048AEncoder" )) {
71
71
log .info ("here" );
72
72
}
73
73
@@ -85,7 +85,7 @@ private boolean serviceInterfaceTest(String service) throws IOException {
85
85
foo .startService ();
86
86
foo .save ();
87
87
// foo.load(); SHOULD NOT BE USED !
88
- // foo.apply(); <- THIS SHOULD BE IMPLEMENTED
88
+ // foo.apply(); <- THIS SHOULD BE IMPLEMENTED
89
89
foo .stopService ();
90
90
91
91
foo .releaseService ();
@@ -103,16 +103,17 @@ public final void testAllServices() throws ClassNotFoundException, IOException {
103
103
ArrayList <String > servicesNotInServiceDataJson = new ArrayList <String >();
104
104
105
105
HashSet <String > blacklist = new HashSet <String >();
106
- blacklist .add ("OpenNi" );
107
- blacklist .add ("As5048AEncoder" );
108
- blacklist .add ("IntegratedMovement" );
106
+ blacklist .add ("OpenNi" );
107
+ blacklist .add ("As5048AEncoder" );
108
+ blacklist .add ("IntegratedMovement" );
109
109
blacklist .add ("VirtualDevice" );
110
110
blacklist .add ("Joystick" );
111
111
blacklist .add ("GoogleAssistant" );
112
112
blacklist .add ("LeapMotion" );
113
113
blacklist .add ("Python" ); // python's interpreter cannot be restarted cleanly
114
114
blacklist .add ("Runtime" );
115
115
blacklist .add ("OpenCV" );
116
+ blacklist .add ("LeapMotion2" );
116
117
blacklist .add ("InMoov2" );
117
118
blacklist .add ("WorkE" );
118
119
blacklist .add ("JMonkeyEngine" );
@@ -164,7 +165,7 @@ public final void testAllServices() throws ClassNotFoundException, IOException {
164
165
continue ;
165
166
}
166
167
// log.info("Testing Service: {}", service);
167
-
168
+
168
169
System .out .println ("testing " + service );
169
170
170
171
MetaData st = ServiceData .getMetaData ("org.myrobotlab.service." + service );
0 commit comments