This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
src\xunit\Sdk\Executor.cs | |
15: /// ExecutorWrapper instead. | |
src\xunit.runner.msbuild\Utility\XmlTestRunner.cs | |
8: public XmlTestRunner(IExecutorWrapper executorWrapper, IRunnerLogger logger) | |
10: testRunner = new TestRunner(executorWrapper, logger); | |
src\xunit.runner.msbuild\xunit.cs | |
98: using (ExecutorWrapper wrapper = new ExecutorWrapper(assemblyFilename, configFilename, ShadowCopy)) | |
src\xunit.runner.msbuild\xunitproject.cs | |
48: using (ExecutorWrapper wrapper = new ExecutorWrapper(assembly.AssemblyFilename, assembly.ConfigFilename, assembly.ShadowCopy)) | |
src\xunit.runner.tdnet\TdNetRunner.cs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace ConsoleApplication1 | |
{ | |
interface ITest | |
{ | |
void Method(); | |
} | |
class Parent : ITest |