In order to make isolated tests, it would be interesting to drop and create tables or clean them before each test. Any easy way to do it with SORM?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can create new instances for each test with
initModeset to DropAllCreate and free all instance’s resources after, using the close() method.A custom function like the following might be helpful to you:
Using it it’ll be easy to always work in a context of a freshly created instance: