16 lines
293 B
Java
Raw Normal View History

2017-05-03 17:50:35 +02:00
import org.junit.Test;
import static org.hamcrest.CoreMatchers.instanceOf;
import static org.junit.Assert.assertThat;
/**
2017-05-23 01:38:02 +02:00
* Guard test
2017-05-03 17:50:35 +02:00
*/
public class GuardTest {
@Test
public void testGuard() {
Guard guard = new Guard();
assertThat(guard, instanceOf(Permission.class));
}
2017-05-23 01:38:02 +02:00
}