I'd like to write some unit tests for some code that connects to a database, runs one or more queries, and then processes the results.
(Without actually using a database)
Another developer here ...
I'm trying to create a test that simulates a system failure to ensure the integrity of a Oracle Berkeley DB XML database. Data loss is currently being experienced during an insert ...
I have to test some Thrift services using Junit. When I run my tests as a Thrift client, the services modify the server database. I am unable to find a good ...
If I am testing a database rowset, what would be the criteria to test against?
Should I test that a row exists with a name of A, etc etc (What's in the ...
I want to create a test suit for my java web application. Its a JSP applications with JDBC connectivity . My requirements are as follows,
1 - I should be able to ...
I have a small experience with JUnit and TestNG, and today I need to do some Unit Testing for Java database code.
I really don't know how I can achieve ...
I am getting list of data from database from my Service Class Method mDataVO.getMarketData() where mDataVO is an object of marketDataVO which is an value object for storing different types of ...
I have a JUnit test that I would like to run from a main method. I would like to retrieve multiple records from a database (within the main method) and ...
We have a case where we are testing a swing application. We have a QA person who up until now was doing manual testing of the app. Now we have realised ...
I have an application that uses databases through jdbc API (in fact spring jdbc template). We want to run our unit tests against more type of databases (MS SQL, Oracle, Postgre); ...