Adding get host version method.

This commit is contained in:
Samuel Carlsson
2013-07-25 21:13:20 +02:00
parent 9eb33de413
commit b36ede6770
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package se.vidstige.jadb.test;
import org.junit.Test;
import se.vidstige.jadb.JadbConnection;
public class JadbTestCases {
@Test
public void test() throws Exception {
JadbConnection jadb = new JadbConnection();
jadb.getHostVersion();
}
}