public FootwearInstructionTests() { _weatherMock = Substitute.For <IWeatherDressing>(); _stateManager = Substitute.For <IStateManager>(); _footwearInstruction = new FootwearInstruction(_weatherMock, _stateManager); }
public PajamasInstructionTests() { _stateManager = Substitute.For <IStateManager>(); _weatherMock = Substitute.For <IWeatherDressing>(); _pajamasInstruction = new PajamasInstruction(_weatherMock, _stateManager); }
public HeadwearInstruction(IWeatherDressing weatherType, IStateManager stateManager) { _weatherType = weatherType; _stateManager = stateManager; }
public LeaveHouseInstructionTests() { _stateManager = Substitute.For <IStateManager>(); _weatherMock = Substitute.For <IWeatherDressing>(); _leaveHouseInstruction = new LeaveHouseInstruction(_weatherMock, _stateManager); }
public PajamasInstruction(IWeatherDressing weatherType, IStateManager stateManager) { _weatherType = weatherType; _stateManager = stateManager; }
public LeaveHouseInstruction(IWeatherDressing weatherType, IStateManager stateManager) { _weatherType = weatherType; _stateManager = stateManager; }
public HeadwearInstructionTests() { _stateManager = Substitute.For <IStateManager>(); _weatherMock = Substitute.For <IWeatherDressing>(); _headwearInstruction = new HeadwearInstruction(_weatherMock, _stateManager); }
public ShirtInstructionTests() { _stateManager = Substitute.For <IStateManager>(); _weatherMock = Substitute.For <IWeatherDressing>(); _shirtInstruction = new ShirtInstruction(_weatherMock, _stateManager); }