【发布时间】:2015-03-27 02:11:04
【问题描述】:
我在模拟 EntityManager 时遇到问题。一切都编译了,测试运行了,但是模拟的方法返回 null。
当我在模拟的“查找”方法中设置断点时,应用程序永远不会在那里暂停。 我设法以这种方式成功地使用静态方法模拟了不同的类 - 但是使用这个我遇到了问题。
我使用 Jmockit 1.7 和 Java 1.8.0。 我要模拟的类是:javax.persistence.EntityManager
如果需要更多信息 - 请询问。如果有任何帮助,我将不胜感激。
这是我的代码:
@RunWith(JMockit.class)
public class ShapefileSerializerTest {
@Mocked
private EntityManager em;
@BeforeClass
public static void setUpBeforeClass() throws Exception {
new MockDatabase();
}
@Test
public void testPrepareShapefile() {
String[][] data = new String[][] {{"1", "100"}, {"1", "101"}, {"1", "102"}, {"1", "103"}, {"2", "200"}, {"2", "201"}};
List<Map<String, String>> featuresData = Stream.of(data).map(row -> {
Map<String, String> map = new HashMap<>(2);
map.put("layerId", row[0]);
map.put("id", row[1]);
return map;
}).collect(Collectors.toList());
ShapefileSerializer shapefileSerializer = new ShapefileSerializer("shapefiles");
// if I do not set up the em here - then it will be null inside the tested class
Deencapsulation.setField(shapefileSerializer, em);
Response response = shapefileSerializer.prepareShapefile(featuresData);
assertEquals(Status.OK.getStatusCode(), response.getStatus());
}
public static final class MockDatabase extends MockUp<EntityManager> {
@Mock
@SuppressWarnings("unchecked")
public <T> T find(Class<T> entityClass, Object primaryKey) {
return (T) new ProjectLayer();
}
}
}
【问题讨论】:
标签: java unit-testing testing jmockit mockups