File tree Expand file tree Collapse file tree 5 files changed +9
-0
lines changed
src/test/java/net/leibi/adventofcode2023 Expand file tree Collapse file tree 5 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 6
6
7
7
import static org .assertj .core .api .Assertions .assertThat ;
8
8
9
+ @ Disabled
9
10
class Day14Test {
10
11
11
12
Day14 day14 = new Day14 ();
Original file line number Diff line number Diff line change 1
1
package net .leibi .adventofcode2023 .day2 ;
2
2
3
+ import org .junit .jupiter .api .Disabled ;
3
4
import org .junit .jupiter .api .Test ;
4
5
5
6
import static org .assertj .core .api .Assertions .assertThat ;
@@ -19,11 +20,13 @@ void testDay2_2Small() {
19
20
}
20
21
21
22
@ Test
23
+ @ Disabled
22
24
void testDay2_2Big () {
23
25
assertThat (day2 .getPowerSum (Input .BIG )).isEqualTo (2286 );
24
26
}
25
27
26
28
@ Test
29
+ @ Disabled
27
30
void testDay2Big () {
28
31
assertThat (day2 .getSumOfPossibleGames (Input .BIG )).isEqualTo (74229 );
29
32
}
Original file line number Diff line number Diff line change 1
1
package net .leibi .adventofcode2023 .day3 ;
2
2
3
+ import org .junit .jupiter .api .Disabled ;
3
4
import org .junit .jupiter .api .Test ;
4
5
5
6
import java .util .ArrayList ;
@@ -163,6 +164,7 @@ void testSubset() {
163
164
}
164
165
165
166
@ Test
167
+ @ Disabled
166
168
void testConjoinedNumbers () {
167
169
var s = """
168
170
..313*820...666/.
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ void getCompleteSeedList_Small() {
21
21
22
22
23
23
@ Test
24
+ @ Disabled
24
25
void getCompleteSeedList_Big () {
25
26
assertThat (day5 .getLowestLocationNumberFromSeedList (Input .BIG )).isEqualTo (28580590L );
26
27
}
Original file line number Diff line number Diff line change 1
1
package net .leibi .adventofcode2023 .day7 ;
2
2
3
+ import org .junit .jupiter .api .Disabled ;
3
4
import org .junit .jupiter .api .Test ;
4
5
5
6
import java .util .List ;
@@ -16,6 +17,7 @@ void getTotalWinnings() {
16
17
}
17
18
18
19
@ Test
20
+ @ Disabled
19
21
void getTotalWinnings_Big () {
20
22
assertThat (day7 .getTotalWinnings (Input .BIG )).isNotEqualTo (250498105L );
21
23
assertThat (day7 .getTotalWinnings (Input .BIG )).isNotEqualTo (250497395L );
You can’t perform that action at this time.
0 commit comments