public void DoStuff_GivenStuff_ExpectedStuff()
 {
     //Arrange: New-up SomeService
     var someService = new DependencyInjectionMakesUnitTestingSimple.SomeService();
     //Act:Make it DoStuff
     var succes = someService.DoStuff();
     //Assert: If writing to the DB/call to the webservice/logging succeeded
     Assert.True(succes && VerifyCallToWebservice() && VerifyWritingToLog());
 }
        public void DoStuff_GivenStuff_ExpectedStuff()
        {
            //Arrange: New-up SomeService
            var someService = new DependencyInjectionMakesUnitTestingSimple.SomeService();
            //Act:Make it DoStuff
            var succes = someService.DoStuff();

            //Assert: If writing to the DB/call to the webservice/logging succeeded
            Assert.True(succes && VerifyCallToWebservice() && VerifyWritingToLog());
        }