|
From: <sm...@us...> - 2003-02-10 13:25:00
|
Update of /cvsroot/nmock/nmock/src/NMock/Constraints
In directory sc8-pr-cvs1:/tmp/cvs-serv31631/src/NMock/Constraints
Modified Files:
IConstraint.cs
Log Message:
*** keyword substitution change ***
Index: IConstraint.cs
===================================================================
RCS file: /cvsroot/nmock/nmock/src/NMock/Constraints/IConstraint.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** IConstraint.cs 15 Nov 2002 22:48:20 -0000 1.1
--- IConstraint.cs 10 Feb 2003 13:24:57 -0000 1.2
***************
*** 1,12 ****
! namespace NMock.Constraints
! {
!
! public interface IConstraint
! {
!
! bool Eval(object val);
! string Message { get; }
!
! }
!
! }
--- 1,10 ----
! namespace NMock.Constraints
! {
! public interface IConstraint
! {
! bool Eval(object val);
! object ExtractActualValue(object actual);
! string Message { get; }
! }
!
! }
|