14 lines
234 B
Java
Raw Normal View History

2017-05-03 17:50:35 +02:00
import org.junit.Test;
import static org.junit.Assert.assertFalse;
2017-05-03 22:09:47 +02:00
/**
2017-05-23 01:38:02 +02:00
* Thief test
2017-05-03 22:09:47 +02:00
*/
2017-05-03 17:50:35 +02:00
public class ThiefTest {
@Test
2017-05-23 01:38:02 +02:00
public void testThief() {
2017-05-03 17:50:35 +02:00
Thief thief = new Thief();
assertFalse(thief instanceof Permission);
}
2017-05-23 01:38:02 +02:00
}