| fit.Test.FitUnit.ConfigurationTest |
An empty configuration settings returns null.
| settings |
| check | runner | null |
An XML configuration file is loaded.
| load xml | <suiteConfig><fitSharp.Machine.Application.Settings><runner>testvalue</runner></fitSharp.Machine.Application.Settings></suiteConfig> |
The key value is returned.
| settings |
| check | runner | testvalue |
A copy is saved.
A value is changed.
| settings |
| runner | newvalue |
| check | runner | newvalue |
The copy is restored and is unchanged.
| restore copy |
| settings |
| check | runner | testvalue |
A list is loaded.
| load xml | <suiteConfig><fit.Test.FitUnit.TestList> <add>item1</add> <add>item2</add> <insert before="item2">item15</insert></fit.Test.FitUnit.TestList></suiteConfig> |
| test list | fit.Test.FitUnit.TestList |
| to string |
| item1 |
| item15 |
| item2 |