From: Richard B. <rb...@us...> - 2004-12-06 01:01:23
|
Update of /cvsroot/jcframework/Nunit/Interfaces In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28347/Interfaces Added Files: ValidatedEmployee.vb Log Message: Extra tests for IValidation interface --- NEW FILE: ValidatedEmployee.vb --- Namespace Interfaces Public Class ValidatedEmployee Inherits EmployeeClass Implements AToMSFramework.IValidation Private _allowValidation As Boolean Public Property AllowValidation() As Boolean Get Return _allowvalidation End Get Set(ByVal Value As Boolean) _allowvalidation = Value End Set End Property Public Function IsValid() As Boolean Implements AToMSFramework.IValidation.IsValid Return _allowValidation End Function End Class End Namespace |