summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/integration/_fixtures/convert_fixtures/extra_functions_test.go
blob: ccb3669a5a8be504c305529a9c5d7c0b2a422c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package tmp

import (
	"testing"
)

func TestSomethingLessImportant(t *testing.T) {
	strp := "hello!"
	somethingImportant(t, &strp)
}

func somethingImportant(t *testing.T, message *string) {
	t.Log("Something important happened in a test: " + *message)
}