fix version and javadoc

This commit is contained in:
Aleksandar Dudukovic
2017-05-23 01:38:02 +02:00
parent 1abd96a9c8
commit f2e35ec03d
9 changed files with 34 additions and 32 deletions

@@ -1,7 +1,3 @@
/**
* Created by Alexis on 01-May-17.
*/
import org.junit.Test;
/**

@@ -4,7 +4,7 @@ import static org.hamcrest.CoreMatchers.instanceOf;
import static org.junit.Assert.assertThat;
/**
* Created by Alexis on 02-May-17.
* Guard test
*/
public class GuardTest {
@@ -13,4 +13,4 @@ public class GuardTest {
Guard guard = new Guard();
assertThat(guard, instanceOf(Permission.class));
}
}
}

@@ -3,12 +3,12 @@ import org.junit.Test;
import static org.junit.Assert.assertFalse;
/**
* Created by Alexis on 02-May-17.
* Thief test
*/
public class ThiefTest {
@Test
public void testGuard() {
public void testThief() {
Thief thief = new Thief();
assertFalse(thief instanceof Permission);
}
}
}