How to write a junit testcase for a void method that creates a new object

后端 未结 2 1697
北海茫月
北海茫月 2021-01-28 15:35
public class SupportController{

    public void disableUserAccount(String username) throws Exception {
        UserAccount userAccount = 
                new UserAccoun         


        
相关标签:
2条回答
  • 2021-01-28 16:23

    I would suggest using Mock Objects.

    Besides that, you can check the JUnit FAQ, where you can find a section about testing methods that return void.

    Often if a method doesn't return a value, it will have some side effect. Actually, if it doesn't return a value AND doesn't have a side effect, it isn't doing anything.

    There may be a way to verify that the side effect actually occurred as expected

    0 讨论(0)
  • 2021-01-28 16:25

    There are three basic solutions:

    1. Use a factory class that can be mocked
    2. Use PowerMock which can mock calls to constructors
    3. Update the class to use a default scope or protected scope factory method which could be overridden in a test env.

    PowerMock does not always play well with other runners (for example SpringJUnit4TestRunner). I usually avoid it for this reason and the fact that it modifies the compiled code.

    The overridable factory method is another option. To do this you must extend the class and override the factory method. This means that the test is running against an instance of the class under test that is not actually the class under test but a testable subclass. This has test-smell to me so I tend to avoid it where possible.

    The factory class method is my preferred solution. Pass in a Factory class that be default creates the UserAccount. In your test provide a mocked (I use Mockito) version of the factory.

    0 讨论(0)
提交回复
热议问题