I have come with a growing library of quick one-click functions that I want to call as development tools. So far, I have written them as [TestMethod, TestCategory("ToolsManagement")]
functions that I set at [Ignore]
and when I want to use my tool I remove the [Ignore]
line and run the test.
What is a better way to organize my tools library as I am tired of seeing them as test functions?
Edit 1:
I'll try to explain a bit more what I need...I hope it will be clearer.
While developing, I debug and test the application, so I often insert/update data in the database. Often, I want to create a snapshot, restore a snapshot, or recreate the database so it is empty. I also coded functions to reproduce business cases, inserting a lot of data at different places for examples, instead of doing it manually. Those are example of my development tools that I want quick and easy access to, but not from the Test View.