Guest User

Untitled

a guest
Aug 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. using NUnit.Framework;
  2.  
  3. namespace SetUpFixtureSample
  4. {
  5. [TestFixture]
  6. [Explicit]
  7. [Category("DataLoader")]
  8. public class DataLoaderFixture
  9. {
  10. [Test]
  11. public void LoadData()
  12. {
  13. //Clean the database
  14. //Load test data into the database
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment