在这里,我用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>
我见过与此场景类似的问题。但以下建议并不能解决问题。
任何人都可以描述它发生的原因以及如何解决此问题,这将非常有帮助。提前谢谢。
在测试用例中不工作之前
之后简单 junit-class-is-not-calling-the-before-method
为什么不是我的类之前方法运行
你应该用@RunWith(MockitoJUnitRunner.class)
注释你的类,所以MickitoJunitRunner会照顾你的模拟和测试。但它不会像这样与 JBehave 一起工作。你必须决定是要使用JBehave还是MockitoJUnitRunner。
在 JBehave 中,要使用的正确注释是: @BeforeScenario
@AfterScenario
@BeforeStory
@AfterStory
请查看 jbeact 文档: http://jbehave.org/reference/stable/annotations.html