How to determine which hierarchy will be tested and untested in DUnit in app console?

82 Views Asked by At

How to determine which hierarchy will be tested and untested in DUnit in app console? When i work in GUI mode, i can check and unchek the hierarcy.

1

There are 1 best solutions below

0
mjn On

The ITest interface in DUnit contains a Enabled property. You can assign False to this property for tests (and test hierarchies) which should not run.

See How can I disable DUnit tests by name programmatically?