...

Source file src/github.com/onsi/ginkgo/v2/integration/_fixtures/xunit_fixture/xunit_tests_test.go

Documentation: github.com/onsi/ginkgo/v2/integration/_fixtures/xunit_fixture

     1  package xunit_tests
     2  
     3  import (
     4  	"testing"
     5  )
     6  
     7  func TestAlwaysTrue(t *testing.T) {
     8  	if AlwaysTrue() != true {
     9  		t.Errorf("Expected true, got false")
    10  	}
    11  }
    12  

View as plain text