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 Type 'ArithmeticColumnFixture' not 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 |
|