Revise Agg automation

- Remove per test classes
- Migrate RunInApplicationDomain attributes to TextFixture
- Convert from Action<AutomationRunner> to AutomationTest delegate
- Convert testRunner.AddTestResult to Assert.IsTrue
- Remove testRunner.AllTestPassed(n) - use Asserts
- Add return Task.FromResult(0) for non-async test method bodies
- Upgrade NUnit.ApplicationDomain to v10
This commit is contained in:
John Lewin 2016-10-25 06:17:37 -07:00
parent 44b3d9513f
commit c72c8d8fc6
21 changed files with 588 additions and 621 deletions

View file

@ -2,5 +2,5 @@
<packages>
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" />
<package id="NUnit" version="3.4.1" targetFramework="net45" />
<package id="NUnit.ApplicationDomain" version="9.0.0.0" targetFramework="net45" />
<package id="NUnit.ApplicationDomain" version="10.0.00" targetFramework="net45" />
</packages>