Exemplo n.º 1
0
 @Test
 public void FILE_type_is_deeper_than_all_other_types() {
   assertThat(Component.Type.FILE.isDeeperThan(DIRECTORY)).isTrue();
   assertThat(Component.Type.FILE.isDeeperThan(MODULE)).isTrue();
   assertThat(Component.Type.FILE.isDeeperThan(PROJECT)).isTrue();
 }