I think that there is still a problem with my action test cases. With
isRollback() set to false, I can see the update and delete queries executing
and their updates on the database. I can also see a foreign key exception
that I have been trying to recreate with an action test case.
When I lea
You're correct. I turned off the rollback and was able to see the additional
queries. Thanks.
--
View this message in context:
http://www.nabble.com/ActionTest---Not-executing-sql-queries-on-Action.class-tp23680254s2369p23753384.html
Sent from the AppFuse - User mailing list archive at Nabble
You might not be seeing these statements because transactions are rolled
back after tests are executed so the database remains in an untainted state.
Matt
On Tue, May 26, 2009 at 10:21 PM, paulie wrote:
>
> Can someone tell me if you see the update and delete sql on the console
> during the exe
If you're using AppFuse 1.9.4, you should already have a build.xml. To add a
new dependency, see the following tutorial:
http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseAddLibrary
Here's information for DB2:
http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseOnDB2
Matt
On Wed, May 27, 2009
No its not appfuse. Its a simple web application. I used appfuse 1.9.4.
Regards,
Jithesh PM.
mraible wrote:
>
> Are you using AppFuse?
>
> On Tue, May 26, 2009 at 8:58 AM, jithesh wrote:
>
>>
>> Hi,
>>
>> I created a simple web project that updates the DB2 table. I
>> was
>> able to