-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIScriptCollection.cs
50 lines (42 loc) · 1.45 KB
/
IScriptCollection.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using System;
using System.Collections.Generic;
using System.IO;
namespace ContinuousRunner
{
public interface IScriptCollection
{
/// <summary>
/// Get a collection of all script files in this solution
/// </summary>
IEnumerable<FileInfo> GetScriptFiles();
/// <summary>
/// Get a collection of all known scripts
/// </summary>
IEnumerable<IScript> GetScripts();
/// <summary>
/// Get a collection of all known test scripts
/// </summary>
IEnumerable<IScript> GetTestScripts();
/// <summary>
/// Get the complete set of product scripts, minus the collection returned by <see cref="GetTestScripts"/>
/// </summary>
IEnumerable<IScript> GetProductScripts();
/// <summary>
/// Add a new script to the collection
/// </summary>
/// <param name="script">A product script or a test script</param>
void Add(IScript script);
/// <summary>
/// Remove the specified script from this collection
/// </summary>
void Remove(IScript script);
/// <summary>
/// Find a matching script from this collection
/// </summary>
IScript FindScript(Func<IScript, bool> matcher);
/// <summary>
/// Find a matching test script from this collection
/// </summary>
IScript FindTestScript(Func<IScript, bool> matcher);
}
}