within a given test the only thing outside of the record/playback
blocks is variables local to the test.
within the SetUp of each tests a declare a new repository.
private MockRepository = mockery;
[SetUp]
public void Setup
{
mockery = new MockRepository();
}
[Test]
public void TestOne()
{
using(mockery.Record())
{
}
using(mockery.Playback())
{
//place assertions here
}
}
[Test]
public void TestTwo()
{
using(mockery.Record())
{
}
using(mockery.Playback())
{
//place assertions here