16 lines
257 B
Java
Raw Normal View History

2017-05-03 17:50:35 +02:00
/**
* Created by Alexis on 02-May-17.
*/
import org.junit.Test;
import static org.junit.Assert.assertFalse;
public class ThiefTest {
@Test
public void testGuard() {
Thief thief = new Thief();
assertFalse(thief instanceof Permission);
}
}