public void ConstructHimself() { _ = new Clean.Command(_actionToExecute); }
public void TestInitialize() { _actualCount = 0; _actionToExecute = o => _actualCount++; _sut = new Clean.Command(_actionToExecute); }