#567 fix version and javadoc
This commit is contained in:
marker
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user