Skip to content
Advertisement

Java Test with coverage fails on methods that use Scanner, but the same test passess successfully if only the particlar test method is executed

I am new to Java and I have been struggling with this issue where the test with coverage fails on a method that takes input (via Scanner). The strange thing about it is that, the exact same test passes if I only run the particular test method from intellij.

I have been able to replicate it to some extent in this simple example below –
InputName.java

JavaScript

InputNameTest.java

JavaScript

Directory structure

JavaScript

Test uses Junit4.

Here, only the second test might fail for you. However in my actual project, both tests fail when run as coverage (maybe because the test tests other methods that use Scanner before this method). But both pass when run individually.

Failing when whole test run with coverage – enter image description here Passing when running only that test method – enter image description here

Advertisement

Answer

You UnitTest is brittle because of a bad design. Your class under test is S.T.U.P.I.D. code.

It is a common misconception that methods in “Utility classes” should be static. Infact they should not, especially if those methods are not pure functions but need some dependencies as your code does.

The proper solution to that problem would be to remove the statickeyword from the method an pass an instance of the Scanner class as a constructor parameter instead of instantiating it inside the class InputName itself:

JavaScript

The your test would change to this:

JavaScript

No need to mess around with System.in

Of course, using a mocking framework (like Mockito) to create a test double of the Scanner class would be even better.

Advertisement