github.com/SAP/cloud-mta-build-tool@v1.2.27/internal/archive/fsys_suite_test.go (about)

     1  package dir
     2  
     3  import (
     4  	"testing"
     5  
     6  	. "github.com/onsi/ginkgo"
     7  	. "github.com/onsi/gomega"
     8  
     9  	"github.com/SAP/cloud-mta-build-tool/internal/logs"
    10  )
    11  
    12  func TestFsys(t *testing.T) {
    13  	RegisterFailHandler(Fail)
    14  	RunSpecs(t, "Fsys Suite")
    15  }
    16  
    17  var _ = BeforeSuite(func() {
    18  	logs.NewLogger()
    19  })