我的設置是Spring引導,Neo4J,Junit。 我想測試是否有兩個用戶共享相同的名字,但不同的用戶名(數據庫中有兩個)。 我想這一點:Junit:如何測試neo4j查詢的多個預期結果?
@Test
public void findUsersByName(){
Assert.assertEquals(FIRSTNAME1, userRepository.findUserByName(FIRSTNAME1).getName());
}
產生錯誤:
java.lang.RuntimeException: Result not of expected size. Expected 1 row but found 2
我怎麼能對多個對象進行測試使用JUnit?我如何聲明我期望兩個用戶都擁有相同的FIRSTNAME1?
謝謝!我會解決你的第一段,但你的剩餘答案是更有幫助! – PaulB