| Author |
How Oracle's automated test load DB file?
|
Himai Minh
Ranch Hand
Joined: Jul 29, 2012
Posts: 289
|
|
We have to name the database access class to Data.java because the Oracle has an automated test run using Data instance.
In Data.java, we don't need to define a load data method to load the DB file. How can the automated test load DB file?
In Roberto's test, there is a DAOFactory class that loads all the data. But not everyone has DAOFactory to load the data.
Will I fail the automated test if I don't have a DAOFactory class?
|
 |
Roel De Nijs
Bartender
Joined: Jul 19, 2004
Posts: 4351
|
|
There is no requirement that the database file should be loaded.
The read()-method could simply open the file, move file pointer to record location, read the record and close the file. No need to load database file.
A DAOFactory is not a (must) requirement, so you won't fail if you don't provide one.
|
SCJA, SCJP (1.4 | 5.0 | 6.0), SCJD
http://www.javaroe.be/
|
 |
 |
|
|
subject: How Oracle's automated test load DB file?
|
|
|