Rename test functions
authorGreg Burri <greg.burri@gmail.com>
Fri, 13 Dec 2024 15:58:15 +0000 (16:58 +0100)
committerGreg Burri <greg.burri@gmail.com>
Fri, 13 Dec 2024 15:58:15 +0000 (16:58 +0100)
src/day03.rs
src/day04.rs
src/day05.rs
src/day06.rs
src/day07.rs
src/day08.rs
src/day09.rs
src/day10.rs
src/day11.rs

index 4a2f59d..4b183a4 100644 (file)
@@ -49,7 +49,7 @@ mod tests {
         r#"xmul(2,4)%&mul[3,7]!@^do_not_mul(5,5)+mul(32,64]then(mul(11,8)mul(8,5))"#;
 
     #[test]
-    fn test_part1() {
+    fn part1() {
         let v = execute_corrupted_program(CORRUPTED_PROGRAM_PART1);
         assert_eq!(v, 161);
     }
@@ -58,7 +58,7 @@ mod tests {
         r#"xmul(2,4)&mul[3,7]!^don't()_mul(5,5)+mul(32,64](mul(11,8)undo()?mul(8,5))"#;
 
     #[test]
-    fn test_part2() {
+    fn part2() {
         let v = execute_corrupted_program_dodont(CORRUPTED_PROGRAM_PART2);
         assert_eq!(v, 48);
     }
index a92e9ac..b228168 100644 (file)
@@ -114,14 +114,14 @@ MAMMMXMMMM
 MXMXAXMASX";
 
     #[test]
-    fn test_part1() {
+    fn part1() {
         let word_search = read_word_search(&mut WORD_SEARCH.as_bytes());
         let n = nb_of_word_occurences(&word_search, "XMAS");
         assert_eq!(n, 18);
     }
 
     #[test]
-    fn test_part2() {
+    fn part2() {
         let word_search = read_word_search(&mut WORD_SEARCH.as_bytes());
         let n = nb_of_mas_cross(&word_search);
         assert_eq!(n, 9);
index 10d0915..9693975 100644 (file)
@@ -131,7 +131,7 @@ mod tests {
 97,13,75,29,47";
 
     #[test]
-    fn test_part1() {
+    fn part1() {
         let (ordering, updates) =
             read_ordering_and_updates(&mut PAGE_ORDERING_AND_UPDATES.as_bytes());
         let s = sum_of_mid_page_from_valid_updates(&ordering, &updates);
@@ -139,7 +139,7 @@ mod tests {
     }
 
     #[test]
-    fn test_part2() {
+    fn part2() {
         let (ordering, updates) =
             read_ordering_and_updates(&mut PAGE_ORDERING_AND_UPDATES.as_bytes());
         let s = sum_of_mid_page_from_corrected_updates(&ordering, &updates);
index 2f771be..6c198c8 100644 (file)
@@ -148,14 +148,14 @@ mod tests {
 ......#...";
 
     #[test]
-    fn test_part1() {
+    fn part1() {
         let (map, guard_pos) = read_map(&mut MAP.as_bytes());
         let n = nb_position_visited_by_guard(&map, guard_pos);
         assert_eq!(n, 41);
     }
 
     #[test]
-    fn test_part2() {
+    fn part2() {
         let (map, guard_pos) = read_map(&mut MAP.as_bytes());
         let n = nb_possible_obstruction_position(&map, guard_pos);
         assert_eq!(n, 6);
@@ -187,7 +187,7 @@ mod tests {
 .#.";
 
     #[test]
-    fn test_part2_tiny_maps() {
+    fn part2_tiny_maps() {
         let (map, guard_pos) = read_map(&mut MAP2.as_bytes());
         assert_eq!(nb_possible_obstruction_position(&map, guard_pos), 1);
 
index 05d23e1..8d03c75 100644 (file)
@@ -106,14 +106,14 @@ mod tests {
 292: 11 6 16 20";
 
     #[test]
-    fn test_part1() {
+    fn part1() {
         let equations = read(&mut EQUATIONS.as_bytes());
         let sum = sum_valid_equations(&equations);
         assert_eq!(sum, 3749);
     }
 
     #[test]
-    fn test_part2() {
+    fn part2() {
         let equations = read(&mut EQUATIONS.as_bytes());
         let sum = sum_valid_equations_with_concat(&equations);
         assert_eq!(sum, 11387);
index 00162ce..8b70448 100644 (file)
@@ -119,14 +119,14 @@ mod tests {
 ............";
 
     #[test]
-    fn test_part1() {
+    fn part1() {
         let antennae = read(&mut ANTENNAE.as_bytes());
         let n = nb_antinodes(&antennae, AntinodeMode::TwoPerPair);
         assert_eq!(n, 14);
     }
 
     #[test]
-    fn test_part2() {
+    fn part2() {
         let antennae = read(&mut ANTENNAE.as_bytes());
         let n = nb_antinodes(&antennae, AntinodeMode::Unlimited);
         assert_eq!(n, 34);
index 31a23cd..7bb59f8 100644 (file)
@@ -130,7 +130,7 @@ mod tests {
     static DISK_MAP: &str = "2333133121414131402";
 
     #[test]
-    fn test_part1() {
+    fn part1() {
         let memory = read(&mut DISK_MAP.as_bytes());
         let memory = defrag_v1(memory);
         let checksum = checksum(&memory);
@@ -138,7 +138,7 @@ mod tests {
     }
 
     #[test]
-    fn test_part2() {
+    fn part2() {
         let memory = read(&mut DISK_MAP.as_bytes());
         let memory = defrag_v2(memory);
         let checksum = checksum(&memory);
index ca7c7f6..b28ec58 100644 (file)
@@ -90,14 +90,14 @@ mod tests {
 10456732";
 
     #[test]
-    fn test_part1() {
+    fn part1() {
         let (map, start_positions) = read_map(&mut MAP.as_bytes());
         let score = score(&map, &start_positions, false);
         assert_eq!(score, 36);
     }
 
     #[test]
-    fn test_part2() {
+    fn part2() {
         let (map, start_positions) = read_map(&mut MAP.as_bytes());
         let score = score(&map, &start_positions, true);
         assert_eq!(score, 81);
index c3e3bd1..58a059d 100644 (file)
@@ -43,7 +43,7 @@ mod tests {
     static STONES: &str = "125 17";
 
     #[test]
-    fn test_part1_and_part2() {
+    fn part1_and_part2() {
         let stones = read(&mut STONES.as_bytes());
         let stones_after_6 = blink(stones.clone(), 6);
         let stones_after_25 = blink(stones, 25);