I generally have different types of tests that I work with - the standard types: Unit Tests (testing basic functionality of classes, methods etc) and Integration Tests (testing how multiple components interact etc).
However I also have a third type of test. It's basically manual tests where I use the unit testing framework and test runner to try out functionality (some people use console apps for this). I typically don't have any asserts in these tests, instead I use the debugger or Debug.Write:s. I often use these types of tests when exploring legacy systems.
Is there an established name for these types of tests? (I'm thinking along the lines of "Exploratory Tests" or "Manual Tests" but these are already established.)
