tests: rewritten all tests to use Ginkgo / Omega BDD testing framework

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel
2022-05-08 14:00:11 +02:00
parent 1fb415139d
commit 25dc954878
34 changed files with 1514 additions and 776 deletions
+13
View File
@@ -0,0 +1,13 @@
package crypto_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestSuite(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "ICE Suite")
}