Well,
I think I might be on the wrong path...
But
what I was trying to do is replace the call the StandardDaoManager with calls to
a MockDaoManager that would return an instance of a mock dao
object
The
MockDao object would just keep all the "data" in memory and the implementation
of each method would return data that I could use for testing, without requiring
a call to the database.
-----Original Message-----I am not sure what you are trying to do here..do you want the DAOs defined in the dao.xml, or do you want to return different ones?
From: Larry Meadors [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 26, 2005 8:30 AM
To: [email protected]
Subject: Re: Mock for DaoManager
It would be a fairly straightforward exercise to build one that mimicked the StandardDaoManager class, and exposed the dao maps so you could replace them.
What is it that you are trying to accomplish? There may be an easier way...
Larry
On 7/26/05, Akins, Greg <[EMAIL PROTECTED]> wrote:Has anyone written a mock object that implements DaoManager for testing?
I started by writing a specific MockDao that returns a specific Dao
implementation; but wanted something that would use the dao.xml. Just
wondering if it's been done already.
-greg
