namespace Agility.Core { /// /// A Command that adds a value to a TestContext under its InputKey. /// public class TestInputCommand : ICommand { public const string VALUE = "INPUT"; public bool Execute(IContext _context) { TestContext context = _context as TestContext; context.Add(context.InputKey, VALUE); return false; } } }