I just complete a Java CONSOLE application for Student Management.
I received a test case set (pdf file contains lines follow according to the requirements of the application) build based on the standard program (from my lecturer). You can overview what my app do and what is format of test casenter image description heree set in the attached image below.
The problem is that I want to use test cases for testing my app but instead of manually entering and matching line by line between Console IO and the pdf file => I want to write a program to automatically import and match the data between my jar/program to test cases.
However, I'm not sure how and where to start. I have tried with google but unit test/white testing is still the thing that takes up all of my search. Hopefully in the process of continuing to try to search with google, someone will give me some suggestions or directions that will be useful to me. Thanks very much.
The way I'd do it is to decouple your application from the console so that you can use fake implementations for printing and reading from the console in your tests. "Fake" is the technical term - you can look up "test doubles" to learn about those and other related ideas. This idea is known as dependency injection, or the dependency inversion principle.
The way we do this is to use interfaces. Here's an example of an application that prints some items:
OutputWriter
is the thing responsible for the printing. It's just an interface, so the application doesn't know whether it writes to the console or somewhere else:For completeness, the
Item
class just holds some data:I can then write a test using JUnit that checks that when I run this application, I get the output that I want. I do that by using an implementation of
OutputWriter
that just writes to a string. That way it's easy to check in the test:and
FakeOutputWriter
looks likeThis gives me confidence that I'm writing the output correctly. In
main
, though, I want to actually print to the console:and
ConsoleOutputWriter
does exactly that:You could take the same approach for faking reading input. Your interface would have a function that takes no arguments and reads a string:
so in the tests you could fake that and in
main
, read using aScanner
or something.