I have an application for which the prod / test / qa database is Oracle only. In addition, I suspect that SQL queries are specific to Oracle. And unfortunately, this application takes second place without unit tests.
As a result, I would like to implement for unit tests, especially with respect to the search component (which obviously performs many Oracle operations, including creating a table).
Usually, when I want to run tests, I run a built-in database (e.g. HSQL), run my tests in that database and let it disappear when my tests finish.
Due to my lack of confidence in the standardization level of this application, I would prefer to run tests in an Oracle database. As a result, I would like to start the oracle database when my tests start, fill it with some test datan and stop it at the end of the test. How can I do this in a maven context?
source share