blob: 5915d9e75d77fbac857057fc13270acbe60ed3dd [file] [log] [blame]
package sample // OMIT
func TestSample(t *testing.T) { // OMIT
// Typical test code
if got, want := testTargetFunc(input), expectedValue; !checkTestResult(got, want) {
t.Errorf("testTargetFunc(%v) = %v; want %v", input, got, want)
}
} // OMIT