class Checkstyle < Formula desc "Check Java source against a coding standard" homepage "https://checkstyle.sourceforge.io/" url "https://downloads.sourceforge.net/project/checkstyle/checkstyle/7.8/checkstyle-7.8-all.jar" sha256 "e82003ff680805f68ca7656a6c674d245fee4368ef3b677a5a8d6471234ffce4" bottle :unneeded def install libexec.install "checkstyle-#{version}-all.jar" bin.write_jar_script libexec/"checkstyle-#{version}-all.jar", "checkstyle" end test do path = testpath/"foo.java" path.write "public class Foo{ }\n" output = `#{bin}/checkstyle -c /sun_checks.xml #{path}` errors = output.lines.select { |line| line.start_with?("[ERROR] #{path}") } assert_match "#{path}:1:17: '{' is not preceded with whitespace.", errors.join(" ") assert_equal errors.size, $?.exitstatus end end