github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/ext/dsort/dsort_suite_test.go (about) 1 // Package dsort provides distributed massively parallel resharding for very large datasets. 2 /* 3 * Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved. 4 */ 5 package dsort_test 6 7 import ( 8 "testing" 9 10 "github.com/NVIDIA/aistore/hk" 11 . "github.com/onsi/ginkgo/v2" 12 . "github.com/onsi/gomega" 13 ) 14 15 func init() { 16 hk.TestInit() 17 } 18 19 func TestDsort(t *testing.T) { 20 RegisterFailHandler(Fail) 21 RunSpecs(t, t.Name()) 22 }