How to simulate a DB for testing (Java)?

后端 未结 14 1390
走了就别回头了
走了就别回头了 2020-11-30 19:15

I\'m programming in Java and my applications are making a lot of use of DB. Hence, it is important for me to be able to test my DB usage easily.
What DB tests are all ab

14条回答
  •  遥遥无期
    2020-11-30 19:35

    You could HSQLDB for in memory db testing. Starting the in memory data base and running tests on it is pretty straightforward.
    http://hsqldb.org/

提交回复
热议问题