Answers:
@Mock
创建一个模拟。@InjectMocks
创建该类的实例,并将使用@Mock
(或@Spy
)注释创建的模拟注入该实例。
请注意,您必须使用@RunWith(MockitoJUnitRunner.class)
或Mockito.initMocks(this)
初始化这些模拟并注入它们。
@RunWith(MockitoJUnitRunner.class)
public class SomeManagerTest {
@InjectMocks
private SomeManager someManager;
@Mock
private SomeDependency someDependency; // this will be injected into someManager
//tests...
}
这是一个关于如何一个示例代码@Mock
和@InjectMocks
作品。
假设我们有Game
和Player
类。
class Game {
private Player player;
public Game(Player player) {
this.player = player;
}
public String attack() {
return "Player attack with: " + player.getWeapon();
}
}
class Player {
private String weapon;
public Player(String weapon) {
this.weapon = weapon;
}
String getWeapon() {
return weapon;
}
}
如您所见,Game
类需要Player
执行attack
。
@RunWith(MockitoJUnitRunner.class)
class GameTest {
@Mock
Player player;
@InjectMocks
Game game;
@Test
public void attackWithSwordTest() throws Exception {
Mockito.when(player.getWeapon()).thenReturn("Sword");
assertEquals("Player attack with: Sword", game.attack());
}
}
Mockito将模拟Player类,并使用when
和thenReturn
方法对其行为进行模拟。最后,使用@InjectMocks
Mockito将其Player
放入Game
。
注意,您甚至不必创建new Game
对象。Mockito将为您注入。
// you don't have to do this
Game game = new Game(player);
使用@Spy
注释,我们也会得到相同的行为。即使属性名称不同。
@RunWith(MockitoJUnitRunner.class)
public class GameTest {
@Mock Player player;
@Spy List<String> enemies = new ArrayList<>();
@InjectMocks Game game;
@Test public void attackWithSwordTest() throws Exception {
Mockito.when(player.getWeapon()).thenReturn("Sword");
enemies.add("Dragon");
enemies.add("Orc");
assertEquals(2, game.numberOfEnemies());
assertEquals("Player attack with: Sword", game.attack());
}
}
class Game {
private Player player;
private List<String> opponents;
public Game(Player player, List<String> opponents) {
this.player = player;
this.opponents = opponents;
}
public int numberOfEnemies() {
return opponents.size();
}
// ...
这是因为Mockito将检查Type Signature
Game类的Player
和List<String>
。
在您的测试班级中,被测试的班级应使用注释@InjectMocks
。这告诉Mockito将模拟注入哪个类:
@InjectMocks
private SomeManager someManager;
从那时起,我们可以指定将类中的特定方法或对象(在本例中SomeManager
为)替换为模拟:
@Mock
private SomeDependency someDependency;
在此示例中,将SomeDependency
在SomeManager
类内部进行模拟。
@Mock
注释模拟相关对象。
@InjectMocks
批注允许将所创建的不同(和相关)的模拟物注入到基础对象中@Mock
。
两者是互补的。
@InjectMocks
该类来构造和监视它。
例如
@Mock
StudentDao studentDao;
@InjectMocks
StudentService service;
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
}
在这里,我们需要DAO类作为服务类。因此,我们模拟它并将其注入服务类实例中。同样,在Spring框架中,所有@Autowired bean都可以由jUnits中的@Mock模拟,并通过@InjectMocks注入到您的bean中。
MockitoAnnotations.initMocks(this)
方法初始化这些模拟并为每个测试方法注入它们,因此需要在该setUp()
方法中调用它。
Mockito所基于的“模拟框架”是一个使您能够创建Mock对象的框架(旧称这些对象可以称为shunt,因为它们充当依赖功能的shunt)换句话说,模拟object用于模仿您的代码所依赖的真实对象,您可以使用模拟框架创建代理对象。通过在测试中使用模拟对象,您实际上将从普通的单元测试过渡到集成测试
Mockito是根据MIT许可证发布的Java开源测试框架,它是一个“模拟框架”,可让您使用简洁的API编写漂亮的测试。Java空间中有许多不同的模拟框架,但是实际上有两种主要类型的模拟对象框架,一种是通过代理实现的,另一种是通过类重映射实现的。
像Spring这样的依赖注入框架允许您在不修改任何代码的情况下注入代理对象,模拟对象期望调用某种方法,并且它将返回预期的结果。
该@InjectMocks
注释尝试实例与注释的测试对象实例并注入领域@Mock
或@Spy
进入测试对象的私有字段。
MockitoAnnotations.initMocks(this)
调用,重置测试对象并重新初始化模拟,因此请记住在@Before
/ @BeforeMethod
注释中包含此对象。
@Tom提到的方法的一个优点是,您不必在SomeManager中创建任何构造函数,从而限制了客户端实例化它。
@RunWith(MockitoJUnitRunner.class)
public class SomeManagerTest {
@InjectMocks
private SomeManager someManager;
@Mock
private SomeDependency someDependency; // this will be injected into someManager
//You don't need to instantiate the SomeManager with default contructor at all
//SomeManager someManager = new SomeManager();
//Or SomeManager someManager = new SomeManager(someDependency);
//tests...
}
它的好作法取决于您的应用程序设计。
许多人在这里对@Mock
vs进行了很好的解释@InjectMocks
。我喜欢它,但是我认为我们的测试和应用程序应该以不需要使用的方式编写@InjectMocks
。
参考,以获取示例的进一步阅读:https : //tedvinke.wordpress.com/2014/02/13/mockito-why-you-should-not-use-injectmocks-annotation-to-autowire-fields/
@InjectMocks批注可用于将模拟字段自动注入到测试对象中。
在下面的示例中,@InjectMocks已用于将模拟dataMap注入到dataLibrary中。
@Mock
Map<String, String> dataMap ;
@InjectMocks
DataLibrary dataLibrary = new DataLibrary();
@Test
public void whenUseInjectMocksAnnotation_() {
Mockito.when(dataMap .get("aData")).thenReturn("aMeaning");
assertEquals("aMeaning", dataLibrary .getMeaning("aData"));
}
尽管上面的答案已经涵盖了,但我只是想添加一些我看不见的小细节。他们背后的原因(为什么)。
插图:
Sample.java
---------------
public class Sample{
DependencyOne dependencyOne;
DependencyTwo dependencyTwo;
public SampleResponse methodOfSample(){
dependencyOne.methodOne();
dependencyTwo.methodTwo();
...
return sampleResponse;
}
}
SampleTest.java
-----------------------
@RunWith(PowerMockRunner.class)
@PrepareForTest({ClassA.class})
public class SampleTest{
@InjectMocks
Sample sample;
@Mock
DependencyOne dependencyOne;
@Mock
DependencyTwo dependencyTwo;
@Before
public void init() {
MockitoAnnotations.initMocks(this);
}
public void sampleMethod1_Test(){
//Arrange the dependencies
DependencyResponse dependencyOneResponse = Mock(sampleResponse.class);
Mockito.doReturn(dependencyOneResponse).when(dependencyOne).methodOne();
DependencyResponse dependencyTwoResponse = Mock(sampleResponse.class);
Mockito.doReturn(dependencyOneResponse).when(dependencyTwo).methodTwo();
//call the method to be tested
SampleResponse sampleResponse = sample.methodOfSample()
//Assert
<assert the SampleResponse here>
}
}