blob: 2c7c8ea6b77733bfdc414452e92c14f6b08ac417 [file] [log] [blame]
using System;
namespace Agility.Core
{
/// <summary>
/// A command that throws a NotImplementedException.
/// </summary>
public class TestNotImplementedCommand : ICommand
{
public bool Execute(IContext context)
{
throw new NotImplementedException();
}
}
}