26 lines
502 B
C#
26 lines
502 B
C#
using log4net;
|
|
|
|
namespace TBF.BenchControl.Operations
|
|
{
|
|
class ClearResultsOp : IOperation
|
|
{
|
|
private static readonly ILog log = LogManager.GetLogger(typeof(ClearResultsOp));
|
|
public override string ToString() { return "ClearResultsOp"; }
|
|
|
|
public void Start()
|
|
{
|
|
//Results.Clear();
|
|
}
|
|
|
|
public Event Run()
|
|
{
|
|
log.Info("Event.Done");
|
|
return Event.Done;
|
|
}
|
|
|
|
public void Stop()
|
|
{
|
|
}
|
|
}
|
|
}
|