github.com/haraldrudell/parl@v0.4.176/g0/factory_test.go (about)

     1  /*
     2  © 2022–present Harald Rudell <harald.rudell@gmail.com> (https://haraldrudell.github.io/haraldrudell/)
     3  ISC License
     4  */
     5  
     6  package g0
     7  
     8  import (
     9  	"context"
    10  	"testing"
    11  )
    12  
    13  func Test_g1Factory(t *testing.T) {
    14  	g1Group := GoGroupFactory.NewGoGroup(context.Background())
    15  	if g1Group == nil {
    16  		t.Error("G1Factory.NewG1 nil")
    17  	}
    18  }