i am trying to use ApplicationComposer to create some tests. CDI is
scanning the classes correctly but i am a little uncertain about how to
load a test database.
i was going to start by just loading the database as normal as it is a
copy of production database. but how do i specify the username and
password or any other properties that are needed to connect to the db?
@ContainerProperties(@ContainerProperties.Property(name = "mydb", value
= "jdbc:mysql://localhost:3306/mydb"))
is there a way to specify the resource in an xml file?
another question...is it better to start with Arquillian or
ApplicationComposer?