forked from ayende/rhino-mocks
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First go at feature parity for AAA with rec/pb: Partials, Multis, and…
… Stricts git-svn-id: https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk@2214 079b0acf-d9fa-0310-9935-e5ade295c882
- Loading branch information
abombss
committed
Jul 6, 2009
1 parent
3c85489
commit c3b5a31
Showing
8 changed files
with
821 additions
and
191 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
#region license | ||
|
||
// Copyright (c) 2005 - 2007 Ayende Rahien ([email protected]) | ||
// All rights reserved. | ||
// | ||
// Redistribution and use in source and binary forms, with or without modification, | ||
// are permitted provided that the following conditions are met: | ||
// | ||
// * Redistributions of source code must retain the above copyright notice, | ||
// this list of conditions and the following disclaimer. | ||
// * Redistributions in binary form must reproduce the above copyright notice, | ||
// this list of conditions and the following disclaimer in the documentation | ||
// and/or other materials provided with the distribution. | ||
// * Neither the name of Ayende Rahien nor the names of its | ||
// contributors may be used to endorse or promote products derived from this | ||
// software without specific prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE | ||
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
#endregion | ||
|
||
using System; | ||
using MbUnit.Framework; | ||
using Rhino.Mocks.Exceptions; | ||
|
||
namespace Rhino.Mocks.Tests | ||
{ | ||
[TestFixture] | ||
public class PartialMockTestsAAA | ||
{ | ||
private AbstractClass abs; | ||
|
||
[SetUp] | ||
public void SetUp() | ||
{ | ||
abs = (AbstractClass) MockRepository.GeneratePartialMock(typeof (AbstractClass), new Type[] {}); | ||
} | ||
|
||
[Test] | ||
public void AutomaticallCallBaseMethodIfNoExpectationWasSet() | ||
{ | ||
Assert.AreEqual(1, abs.Increment()); | ||
Assert.AreEqual(6, abs.Add(5)); | ||
Assert.AreEqual(6, abs.Count); | ||
abs.VerifyAllExpectations(); | ||
} | ||
|
||
[Test] | ||
public void CanMockVirtualMethods() | ||
{ | ||
abs.Expect(x => x.Increment()).Return(5); | ||
abs.Expect(x => x.Add(2)).Return(3); | ||
|
||
Assert.AreEqual(5, abs.Increment()); | ||
Assert.AreEqual(3, abs.Add(2)); | ||
Assert.AreEqual(0, abs.Count); | ||
abs.VerifyAllExpectations(); | ||
} | ||
|
||
[Test] | ||
public void CanMockAbstractMethods() | ||
{ | ||
abs.Expect(x => x.Decrement()).Return(5); | ||
Assert.AreEqual(5, abs.Decrement()); | ||
Assert.AreEqual(0, abs.Count); | ||
abs.VerifyAllExpectations(); | ||
} | ||
|
||
[Test] | ||
[ExpectedException(typeof (InvalidOperationException), "Can't create a partial mock from an interface")] | ||
public void CantCreatePartialMockFromInterfaces() | ||
{ | ||
MockRepository.GeneratePartialMock<IDemo>(); | ||
} | ||
|
||
[Test] | ||
[ExpectedException(typeof (ExpectationViolationException), "AbstractClass.Decrement(); Expected #0, Actual #1.")] | ||
public void CallAnAbstractMethodWithoutSettingExpectation() | ||
{ | ||
abs.Decrement(); | ||
} | ||
|
||
[Test] | ||
public void CanMockWithCtorParams() | ||
{ | ||
var withParameters = MockRepository.GeneratePartialMock<WithParameters>(1); | ||
withParameters.Expect(x => x.Int).Return(4); | ||
Assert.AreEqual(4, withParameters.Int); | ||
withParameters.VerifyAllExpectations(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.