15 lines
256 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
/**
* Created by Alexis on 02-May-17.
*/
2017-05-03 17:50:35 +02:00
public class ThiefTest {
@Test
public void testGuard() {
Thief thief = new Thief();
assertFalse(thief instanceof Permission);
}
}