I have a method and wish to test it with different values. My question is: how can I write a JUnit test that would test the same method with different values?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
JUnit4 supports parameterized tests for just this purpose. See this tutorial. |
|||
|
|
|
You can take a look at parametrized tests like in example. You can also use theories which is more convenient in a lot of cases. |
||||
|
|
I suggest you create a different unit test for each one of your (overloaded) function definitions, because arguably you are testing in fact different functions. For instance:
|
|||||||||||
|