Changeset View
Changeset View
Standalone View
Standalone View
src/unit/engine/XUnitTestEngine.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Uses xUnit (http://xunit.codeplex.com/) to test C# code. | * Uses xUnit (http://xunit.codeplex.com/) to test C# code. | ||||
| * | * | ||||
| * Assumes that when modifying a file with a path like `SomeAssembly/MyFile.cs`, | * Assumes that when modifying a file with a path like `SomeAssembly/MyFile.cs`, | ||||
| * that the test assembly that verifies the functionality of `SomeAssembly` is | * that the test assembly that verifies the functionality of `SomeAssembly` is | ||||
| * located at `SomeAssembly.Tests`. | * located at `SomeAssembly.Tests`. | ||||
| * | * | ||||
| * @concrete-extensible | * @concrete-extensible | ||||
| */ | */ | ||||
| class XUnitTestEngine extends ArcanistBaseUnitTestEngine { | class XUnitTestEngine extends ArcanistUnitTestEngine { | ||||
| protected $runtimeEngine; | protected $runtimeEngine; | ||||
| protected $buildEngine; | protected $buildEngine; | ||||
| protected $testEngine; | protected $testEngine; | ||||
| protected $projectRoot; | protected $projectRoot; | ||||
| protected $xunitHintPath; | protected $xunitHintPath; | ||||
| protected $discoveryRules; | protected $discoveryRules; | ||||
| ▲ Show 20 Lines • Show All 432 Lines • Show Last 20 Lines | |||||