diff options
Diffstat (limited to 'java/java_test.go')
| -rw-r--r-- | java/java_test.go | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/java/java_test.go b/java/java_test.go index fdf757902..052345871 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -1261,6 +1261,14 @@ func TestJavaLintUsesCorrectBpConfig(t *testing.T) {  	if !strings.Contains(*sboxProto.Commands[0].Command, "--baseline mybaseline.xml") {  		t.Error("did not use the correct file for baseline")  	} + +	if !strings.Contains(*sboxProto.Commands[0].Command, "--error_check NewApi") { +		t.Error("should check NewApi errors") +	} + +	if !strings.Contains(*sboxProto.Commands[0].Command, "--error_check SomeCheck") { +		t.Error("should combine NewApi errors with SomeCheck errors") +	}  }  func TestGeneratedSources(t *testing.T) { |