Class: matlab.unittest.TestRunner
Package: matlab.unittest
Create simplest runner possible
runner = matlab.unittest.TestRunner.withNoPlugins
creates
a TestRunner that is guaranteed to have no plugins installed and returns
it in runner
= matlab.unittest.TestRunner.withNoPluginsrunner
. It is the method one can use to
create the simplest runner possible without violating the guarantees
a test writer has when writing TestCase classes. This runner is a
silent runner, meaning that regardless of passing or failing tests,
this runner produces no command window output, although the results
returned after running a test suite are accurate.
This method can also be used when it is desirable to have complete control over which plugins are installed and in what order. It is the only method guaranteed to produce the minimal TestRunner with no plugins, so one can create it and add additional plugins as desired.
|
|