neo4j文档有this page about creating unit tests for neo4j.
基本上它表明我们使用
创建一个模拟数据库 graphDb = new TestGraphDatabaseFactory().newImpermanentDatabase();
在我们的设置方法和测试中。
问题是 - 如果你看一下full test source code they've given,测试似乎并没有真正测试任何功能。它似乎是重复测试,模拟数据库正确存储和检索结果。
我在这里遗漏了什么吗? - 是否有另一个例子来测试一些实际的业务代码?