summaryrefslogtreecommitdiffstats
path: root/cobbler4j/src/org
diff options
context:
space:
mode:
Diffstat (limited to 'cobbler4j/src/org')
-rw-r--r--cobbler4j/src/org/fedorahosted/cobbler/FinderTests.java (renamed from cobbler4j/src/org/fedorahosted/cobbler/Test.java)10
1 files changed, 9 insertions, 1 deletions
diff --git a/cobbler4j/src/org/fedorahosted/cobbler/Test.java b/cobbler4j/src/org/fedorahosted/cobbler/FinderTests.java
index 582b6d68..01971385 100644
--- a/cobbler4j/src/org/fedorahosted/cobbler/Test.java
+++ b/cobbler4j/src/org/fedorahosted/cobbler/FinderTests.java
@@ -1,12 +1,15 @@
package org.fedorahosted.cobbler;
import java.util.List;
+import org.junit.Test;
+import static org.junit.Assert.*;
-public class Test {
+public class FinderTests {
public static final String user = "testing";
public static final String pass = "testing";
+ /*
public static void main(String[] args) {
if (args.length < 1) {
@@ -19,5 +22,10 @@ public class Test {
listItems(conn, ObjectType.DISTRO);
System.out.println(distros.get(0));
}
+ */
+
+ @Test public void testSomething() {
+ assertTrue(true);
+ }
}