I have a base class with testcases (methods). Also I have another class inherited from the base class with some overloaded test cases (methods). The problem is that the names of the inherited test places (in the interpretation of NUnit) contain the name of the base class. Is it possible to exclude the name of the base class from the name of the inherited test cases and make it look like an overloaded one.
For instance:
inherited method in childClass:
Namespace.parentClass.childClass.name
overloaded method in childClass:
Namespace.childClass.name
source share