test: add unit tests for both parts
This commit is contained in:
32
internal/2015/DayFive/code_test.go
Normal file
32
internal/2015/DayFive/code_test.go
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
package dayfive
|
||||||
|
|
||||||
|
import "testing"
|
||||||
|
|
||||||
|
func TestPartOne(t *testing.T) {
|
||||||
|
input := []string{
|
||||||
|
"ugknbfddgicrmopn",
|
||||||
|
"aaa",
|
||||||
|
"jchzalrnumimnmhp",
|
||||||
|
"haegwjzuvuyypxyu",
|
||||||
|
"dvszwmarrgswjxmb",
|
||||||
|
}
|
||||||
|
expected := 2
|
||||||
|
got := PartOne(input)
|
||||||
|
if got != expected {
|
||||||
|
t.Errorf("PartOne() = %d, want %d", got, expected)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPartTwo(t *testing.T) {
|
||||||
|
input := []string{
|
||||||
|
"qjhvhtzxzqqjkmpb",
|
||||||
|
"xxyxx",
|
||||||
|
"uurcxstgmygtbstg",
|
||||||
|
"ieodomkazucvgmuy",
|
||||||
|
}
|
||||||
|
expected := 2
|
||||||
|
got := PartTwo(input)
|
||||||
|
if got != expected {
|
||||||
|
t.Errorf("PartTwo() = %d, want %d", got, expected)
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user