Skip to content

Commit 7d61948

Browse files
authored
Add @disabled annotation to satellite tests (#2844)
This is make the tests consistent with the other practice exercises. [no important files changed]
1 parent f93ed81 commit 7d61948

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

exercises/practice/satellite/src/test/java/TreeTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import static org.assertj.core.api.Assertions.assertThat;
22

3+
import org.junit.jupiter.api.Disabled;
34
import org.junit.jupiter.api.Test;
45

56
public class TreeTest {
@@ -15,6 +16,7 @@ public void inorder() {
1516
.containsExactly('A', 'B', 'C', 'D', 'E', 'F');
1617
}
1718

19+
@Disabled("Remove to run test")
1820
@Test
1921
public void preorder() {
2022
Tree tree = new Tree(
@@ -27,6 +29,7 @@ public void preorder() {
2729
.containsExactly('A', 'B', 'C', 'D', 'E', 'F');
2830
}
2931

32+
@Disabled("Remove to run test")
3033
@Test
3134
public void postorder() {
3235
Tree tree = new Tree(

0 commit comments

Comments
 (0)