14 lines
209 B
Go
14 lines
209 B
Go
package application
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestApplication(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Application test suite")
|
|
}
|