refactor: massive refactor to have only one binary to call
This commit is contained in:
38
internal/2020/DaySix/code_test.go
Normal file
38
internal/2020/DaySix/code_test.go
Normal file
@@ -0,0 +1,38 @@
|
||||
package daysix
|
||||
|
||||
import "testing"
|
||||
|
||||
var testInput = []string{
|
||||
"abc",
|
||||
"",
|
||||
"a",
|
||||
"b",
|
||||
"c",
|
||||
"",
|
||||
"ab",
|
||||
"ac",
|
||||
"",
|
||||
"a",
|
||||
"a",
|
||||
"a",
|
||||
"a",
|
||||
"",
|
||||
"b",
|
||||
}
|
||||
|
||||
func TestPartOne(t *testing.T) {
|
||||
expected := 11
|
||||
got := PartOne(testInput)
|
||||
if got != expected {
|
||||
t.Errorf("PartOne() = %d, want %d", got, expected)
|
||||
}
|
||||
}
|
||||
|
||||
func TestPartTwo(t *testing.T) {
|
||||
expected := 6
|
||||
got := PartTwo(testInput)
|
||||
if got != expected {
|
||||
t.Errorf("PartTwo() = %d, want %d", got, expected)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user