views:

65

answers:

1

I'm writing some unit tests for an ASP.NET MVC controller that's using SubSonic3 generated model objects (using ActiveRecord "mode" (not sure what else to call it), and am wondering how I can clear out the test data from the test database in my TestFixture's TearDown method. I don't have a direct reference to the model object in my test class, as its a model object that's created by a ControllerAction, so I can't seem to figure out how to clear out the data. Anyone have any ideas?

+1  A: 

Sorry...I figured it out. MyModelClass.ResetTestRepo() did it for me.

Bob Yexley