예제 #1
0
파일: fint_test.go 프로젝트: ksoichiro/fint
func testExecuteError(t *testing.T, opt *common.Opt, msg string) {
	_, err := fint.Execute(opt)
	testExpectErrorWithMessage(t, err, msg)
}
예제 #2
0
파일: fint_test.go 프로젝트: ksoichiro/fint
func testExecuteNormal(t *testing.T, opt *common.Opt, expectedViolations int) {
	v, _ := fint.Execute(opt)
	if len(v) != expectedViolations {
		t.Errorf("Expected violations are [%d] but [%d] found", expectedViolations, len(v))
	}
}