Add basic unit test framework (#390)

Co-authored-by: Marco Franssen <[email protected]>
This commit is contained in:
kfox1111
2023-07-19 18:36:07 +00:00
committed by GitHub
co-authored by Marco Franssen
parent 088b29608e
commit a4c1de7b30
7 changed files with 439 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
package unit_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestUnit(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Unit Suite")
}