1

Query already asked at link

For an enterprise application with huge source code repository which is written in C/C++/Java/JavaScript, for performance reasons. Application also uses relational Database mysql & key-value berkeley DB to store relevant data for the application.

We could use unit testing frameworks like JUnit for java & Check for C in such large applications.

My question:

But, I would like to understand, How would one think of designing Integration testing framework for such Enterprise applications?

Community
  • 1
  • 1
overexchange
  • 15,768
  • 30
  • 152
  • 347
  • By "integration testing" I assume you mean end-to-end with all the bells and whistles (including database access and the likes)? – nablex Oct 03 '14 at 06:07
  • @nablex Yes including the database. – overexchange Oct 03 '14 at 06:26
  • I have added an answer to the question http://stackoverflow.com/questions/15499746/multi-language-integration-testing-framework/. Always interested in feedback! :) – nablex Oct 23 '14 at 09:08

1 Answers1

0

If DB access is in Java, I would suggest to take a look at http://acolyte.eu.org/ which makes possible JDBC unit testing.

It allows to instantiate connection managed by handler you define, to return this or that result according query or update executed.

cchantep
  • 9,118
  • 3
  • 30
  • 41