コード例 #1
0
ファイル: GilesConfigFactory.cs プロジェクト: paulbatum/Giles
        public GilesConfigFactory(GilesConfig config, IFileSystem fileSystem, string solutionPath, string testAssemblyPath, string projectRoot)
        {
            this.config           = config;
            this.fileSystem       = fileSystem;
            this.solutionPath     = solutionPath;
            this.testAssemblyPath = testAssemblyPath;
            this.projectRoot      = projectRoot;

            supportedRunners = new[] { "mspec.exe", "nunit-console.exe:/nologo" };
        }
コード例 #2
0
ファイル: GilesConfigFactory.cs プロジェクト: paulbatum/Giles
        public GilesConfigFactory(GilesConfig config, IFileSystem fileSystem, string solutionPath, string testAssemblyPath, string projectRoot)
        {
            this.config = config;
            this.fileSystem = fileSystem;
            this.solutionPath = solutionPath;
            this.testAssemblyPath = testAssemblyPath;
            this.projectRoot = projectRoot;

            supportedRunners = new[] {"mspec.exe", "nunit-console.exe:/nologo"};
        }
コード例 #3
0
ファイル: SourceWatcher.cs プロジェクト: Erkan-Yilmaz/Giles
 public SourceWatcher(IBuildRunner buildRunner, IFileSystem fileSystem,
     IFileWatcherFactory fileWatcherFactory, GilesConfig config)
 {
     FileWatchers = new List<FileSystemWatcher>();
     this.fileSystem = fileSystem;
     this.buildRunner = buildRunner;
     this.fileWatcherFactory = fileWatcherFactory;
     this.config = config;
     buildDelayTimer = new Timer { AutoReset = false, Enabled = false, Interval = config.BuildDelay };
     config.PropertyChanged += config_PropertyChanged;
     buildDelayTimer.Elapsed += (sender, e) => RunNow();
 }
コード例 #4
0
ファイル: GilesConfigFactory.cs プロジェクト: idavis/Giles
 public GilesConfigFactory(GilesConfig config, string solutionPath, string testAssemblyPath)
 {
     this.config = config;
     this.solutionPath = solutionPath;
     this.testAssemblyPath = testAssemblyPath;
 }
コード例 #5
0
ファイル: BuildRunner.cs プロジェクト: paulbatum/Giles
 public BuildRunner(GilesConfig config, Settings settings)
 {
     this.config = config;
     this.settings = settings;
 }
コード例 #6
0
ファイル: GilesTestListener.cs プロジェクト: skalinets/Giles
 public GilesTestListener(GilesConfig config)
     : this()
 {
     this.config = config;
 }
コード例 #7
0
ファイル: SlayerModule.cs プロジェクト: bivvo/Giles
 public SlayerModule(GilesConfig config)
 {
     this.config = config;
 }
コード例 #8
0
ファイル: TestRunner.cs プロジェクト: idavis/Giles
 public TestRunner(GilesConfig config)
 {
     this.config = config;
 }