Piotr Czajkowski 3 anni fa
parent
commit
fa8289d1e6
1 ha cambiato i file con 25 aggiunte e 0 eliminazioni
  1. 25 0
      06/code_test.go

+ 25 - 0
06/code_test.go

@@ -0,0 +1,25 @@
+package main
+
+import "testing"
+
+func TestPart1(t *testing.T) {
+	fish := readInput("./testinput")
+	if len(fish) == 0 {
+		t.Error("Could not read input")
+	}
+
+	if breed(fish, 80) != 5934 {
+		t.Error("Part 1 failed")
+	}
+}
+
+func TestPart2(t *testing.T) {
+	fish := readInput("./testinput")
+	if len(fish) == 0 {
+		t.Error("Could not read input")
+	}
+
+	if breed(fish, 256) != 26984457539 {
+		t.Error("Part 2 failed")
+	}
+}