Reorganized test

This commit is contained in:
Dreaded_X 2022-12-06 02:30:33 +01:00
parent c75da6c077
commit 3047033aa3
Signed by: Dreaded_X
GPG Key ID: 76BDEC4E165D8AD9
5 changed files with 20 additions and 20 deletions

View File

@ -16,14 +16,14 @@ mod tests {
Day::test(aoc::Part::ONE, "test-1", 24000)
}
#[test]
fn part2_test1() -> Result<()> {
Day::test(aoc::Part::TWO, "test-1", 45000)
}
#[test]
fn part1_solution() -> Result<()> {
Day::test(aoc::Part::ONE, "input", 70116)
}
#[test]
fn part2_test1() -> Result<()> {
Day::test(aoc::Part::TWO, "test-1", 45000)
}
#[test]
fn part2_solution() -> Result<()> {
Day::test(aoc::Part::TWO, "input", 206582)
}

View File

@ -16,14 +16,14 @@ mod tests {
Day::test(aoc::Part::ONE, "test-1", 15)
}
#[test]
fn part2_test1() -> Result<()> {
Day::test(aoc::Part::TWO, "test-1", 12)
}
#[test]
fn part1_solution() -> Result<()> {
Day::test(aoc::Part::ONE, "input", 14264)
}
#[test]
fn part2_test1() -> Result<()> {
Day::test(aoc::Part::TWO, "test-1", 12)
}
#[test]
fn part2_solution() -> Result<()> {
Day::test(aoc::Part::TWO, "input", 12382)
}

View File

@ -16,14 +16,14 @@ mod tests {
Day::test(aoc::Part::ONE, "test-1", 157)
}
#[test]
fn part2_test1() -> Result<()> {
Day::test(aoc::Part::TWO, "test-1", 70)
}
#[test]
fn part1_solution() -> Result<()> {
Day::test(aoc::Part::ONE, "input", 8298)
}
#[test]
fn part2_test1() -> Result<()> {
Day::test(aoc::Part::TWO, "test-1", 70)
}
#[test]
fn part2_solution() -> Result<()> {
Day::test(aoc::Part::TWO, "input", 2708)
}

View File

@ -17,14 +17,14 @@ mod tests {
Day::test(aoc::Part::ONE, "test-1", 2)
}
#[test]
fn part2_test1() -> Result<()> {
Day::test(aoc::Part::TWO, "test-1", 4)
}
#[test]
fn part1_solution() -> Result<()> {
Day::test(aoc::Part::ONE, "input", 567)
}
#[test]
fn part2_test1() -> Result<()> {
Day::test(aoc::Part::TWO, "test-1", 4)
}
#[test]
fn part2_solution() -> Result<()> {
Day::test(aoc::Part::TWO, "input", 907)
}

View File

@ -21,14 +21,14 @@ mod tests {
Day::test(aoc::Part::ONE, "test-1", "CMZ".to_string())
}
#[test]
fn part2_test1() -> Result<()> {
Day::test(aoc::Part::TWO, "test-1", "MCD".to_string())
}
#[test]
fn part1_solution() -> Result<()> {
Day::test(aoc::Part::ONE, "input", "RNZLFZSJH".to_string())
}
#[test]
fn part2_test1() -> Result<()> {
Day::test(aoc::Part::TWO, "test-1", "MCD".to_string())
}
#[test]
fn part2_solution() -> Result<()> {
Day::test(aoc::Part::TWO, "input", "CNSFCGJSM".to_string())
}