public void SetUp()
        {
            _buildBuster = MockRepository.GenerateStub<IBuildBuster>();
            _appLocation = MockRepository.GenerateStub<IAppLocation>();

            // it is very important that we don't rely on (and therefore retest) the 'decorated' BuildBuster object
            // If we did, then that class failing would fail this test too (a classic case of fickle (and therefore bad) tests
            _appLocation.Stub(a => a.DirectoryName).Return(DirectoryName);

            _buildBusterDecorator = new BuildBusterImageDecorator(_buildBuster, _appLocation);
        }
Esempio n. 2
0
        public void SetUp()
        {
            _buildBuster = MockRepository.GenerateStub <IBuildBuster>();
            _appLocation = MockRepository.GenerateStub <IAppLocation>();

            // it is very important that we don't rely on (and therefore retest) the 'decorated' BuildBuster object
            // If we did, then that class failing would fail this test too (a classic case of fickle (and therefore bad) tests
            _appLocation.Stub(a => a.DirectoryName).Return(DirectoryName);

            _buildBusterDecorator = new BuildBusterImageDecorator(_buildBuster, _appLocation);
        }
Esempio n. 3
0
 public void SetUp()
 {
     _speechSynth = MockRepository.GenerateMock<ISpeechSynthesizer>();
     _appLocation = MockRepository.GenerateMock<IAppLocation>();
     _appLocation.Stub(a => a.DirectoryName).Return(@"c:\bla");
 }
 public void SetUp()
 {
     _speechSynth = Create.Mock <ISpeechSynthesizer>();
     _appLocation = Create.Stub <IAppLocation>();
     _appLocation.Stub(a => a.DirectoryName).Return(@"c:\bla");
 }
 public void SetUp()
 {
     _speechSynth = Create.Mock<ISpeechSynthesizer>();
     _appLocation = Create.Stub<IAppLocation>();
     _appLocation.Stub(a => a.DirectoryName).Return(@"c:\bla");
 }