github.com/onsi/ginkgo@v1.16.6-0.20211118180735-4e1925ba4c95/integration/_fixtures/combined_coverage_fixture/second_package/coverage_fixture_test.go (about) 1 package second_package_test 2 3 import ( 4 . "github.com/onsi/ginkgo" 5 . "github.com/onsi/ginkgo/integration/_fixtures/combined_coverage_fixture/second_package" 6 . "github.com/onsi/gomega" 7 ) 8 9 var _ = Describe("CoverageFixture", func() { 10 It("should test A", func() { 11 Ω(A()).Should(Equal("A")) 12 }) 13 14 It("should test B", func() { 15 Ω(B()).Should(Equal("B")) 16 }) 17 18 It("should test C", func() { 19 Ω(C()).Should(Equal("C")) 20 }) 21 22 It("should test D", func() { 23 Ω(D()).Should(Equal("D")) 24 }) 25 26 It("should test E", func() { 27 Ω(E()).Should(Equal("E")) 28 }) 29 })