github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/core/core_suite_test.go (about) 1 // Package core_test provides tests for cluster package 2 /* 3 * Copyright (c) 2018-2021, NVIDIA CORPORATION. All rights reserved. 4 * 5 */ 6 package core_test 7 8 import ( 9 "testing" 10 11 "github.com/NVIDIA/aistore/hk" 12 . "github.com/onsi/ginkgo/v2" 13 . "github.com/onsi/gomega" 14 ) 15 16 func init() { 17 hk.TestInit() 18 } 19 20 func TestCluster(t *testing.T) { 21 RegisterFailHandler(Fail) 22 RunSpecs(t, t.Name()) 23 }