using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; namespace sharpknife.Commands { public class TimedTestCommand : TestCommand { public TimedTestCommand() { } public override void Execute() { base.Execute(); //Thread.Sleep(5 * 1000); } } }