Import Fixture adds to the list of namespaces that are searched for fixture classes.
By default, the fully qualified name of the fixture class is required.
| check | test result |
| ArithmeticColumnFixture |
| x | y | plus? |
| 1 | 2 | 3 |
|
ArithmeticColumnFixture System.ApplicationException: Type 'arithmeticcolumnfixture' could not be found in assemblies. |
| x | y | plus? |
| 1 | 2 | 3 |
|
By importing the namespace, only the fixture class name is required.
| check | test result |
| ArithmeticColumnFixture |
| x | y | plus? |
| 1 | 2 | 3 |
|
| ArithmeticColumnFixture |
| x | y | plus? |
| 1 | 2 | 3 |
|
| check | test result |
| ArithmeticColumnFixture |
| x | y | plus? |
| 1 | 2 | 3 |
|
| ArithmeticColumnFixture |
| x | y | plus? |
| 1 | 2 | 3 |
|