@Before函数在Junit测试用例中并不火

时间:2018-04-09 06:40:37

标签: java unit-testing junit mockito

在这里,我使用Junit和Mockito编写了一个简单的测试用例。

import org.jbehave.core.annotations.Given;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;

import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;

import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.*;

import com.test.dao.login.LoginDao;
import com.test.mapping.user.User;
import com.test.service.login.LoginService;
import com.test.service.login.impl.LoginServiceImpl;
import com.test.util.common.Common;

public class UserLoginSteps {
    @Mock
    Common common;

    @Mock
    LoginDao loginDao;

    @InjectMocks
    LoginService loginService =new LoginServiceImpl();

    @BeforeClass
    public static void beforeClass() {
        System.out.println("@BeforeClass");
    }

    @Before
    public void before() {
        System.out.println("@Before");
        MockitoAnnotations.initMocks(this);
    }

    @After
    public void after() {
        System.out.println("@After");
    }

    @AfterClass
    public static void afterClass() {
        System.out.println("@AfterClass");
    }


    @Given("$username username and $password password")
    @Test
    public void checkUser(String username, String password) throws Exception{

        when(common.checkNullAndEmpty("admin")).thenReturn(true);
        when(common.checkNullAndEmpty("password")).thenReturn(true);
        when(loginDao.getUser("admin","password")).thenReturn(new User());

        assertEquals(true,loginService.checkValidUser(username, password));
    }
}

我已经在 before()函数中初始化了Mock对象。 但是在运行测试用例时不会触发该函数。

我正在使用以下依赖项。

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.11</version>
    <scope>test</scope>
</dependency>

<dependency>
    <groupId>org.mockito</groupId>
    <artifactId>mockito-core</artifactId>
    <version>2.8.9</version>
    <scope>test</scope>
</dependency>

我在这个场景中看到了类似的问题。 但以下建议无法解决问题。

任何人都可以描述它为什么会发生以及如何解决这个问题它会非常有用。 提前谢谢。

After-before-not-working-in-testcase

Simple-junit-class-is-not-calling-the-before-method

Why-isnt-my-beforeclass-method-running

1 个答案:

答案 0 :(得分:1)

你应该用@RunWith(MockitoJUnitRunner.class)注释你的班级所以MickitoJunitRunner会照顾你的模拟和测试。但它与JBehave一起不会像这样工作。您必须决定是否要使用JBehave或MockitoJUnitRunner。

在JBehave中使用正确的注释:@BeforeScenario @AfterScenario @BeforeStory @AfterStory请查看jbehave doc:http://jbehave.org/reference/stable/annotations.html