blob: 6e3b38b54bdba4831d1634fdb3b6ee73f76de37f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package aoc_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestAoc(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Aoc Suite")
}
|