using System; namespace Agility.Core { /// /// A command that throws a NotImplementedException. /// public class TestNotImplementedCommand : ICommand { public bool Execute(IContext context) { throw new NotImplementedException(); } } }