File: fixture.go

package info (click to toggle)
golang-github-smartystreets-gunit 1.2.0%2Bgit20180314.6f0d627-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 200 kB
  • sloc: makefile: 5
file content (13 lines) | stat: -rwxr-xr-x 210 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
package scan

type fixtureInfo struct {
	Filename   string
	StructName string
	TestCases  []*testCaseInfo
}

type testCaseInfo struct {
	CharacterPosition int
	LineNumber        int
	Name              string
}