mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-28 18:12:27 +08:00
20 lines
343 B
Go
20 lines
343 B
Go
// SPDX-FileCopyrightText: 2023 Steffen Vogel <post@steffenvogel.de>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package ice_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"cunicu.li/cunicu/test"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestSuite(t *testing.T) {
|
|
test.SetupLogging()
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "ICE Suite")
|
|
}
|