Looking for some advice on how to proceed here.
I am trying to do some integration testing on wcf services that call other wcf services. I want to make sure that they are configured correctly between one another. We are currently using spring.net and Nhibernate. What I am not sure about is how to check that the database is getting updated without actually saving anything to the database.
I have both msmq and wshttp services that I am trying to test here. I am familiar with transactions, as we use them in spring, but I have no idea how to setup my tests to rollback the transaction in a service that is not being tested directly by the integration test.
Right now the only option I have come up with is using a test database and test data, but it seems like there has to be a better solution than this.
SessionFactory
? – Marijn