public CreateSoundAssetCommandFactory(ICreateSoundAssetService createSoundAssetService) { _createSoundAssetService = createSoundAssetService; }
public CreateSoundAssetCommand(ICreateSoundAssetService createSoundAssetService, IProjectFile soundFile) { _createSoundAssetService = createSoundAssetService; _soundFile = soundFile; }
public void SetUp() { _createSoundAssetService = Substitute.For <ICreateSoundAssetService>(); _projectFile = Substitute.For <IProjectFile>(); _command = new CreateSoundAssetCommand(_createSoundAssetService, _projectFile); }