[Adapdev-commits] Adapdev/src/Adapdev.UnitTest TransactionType.cs,NONE,1.1 Adapdev.UnitTest.csproj,1
Status: Beta
Brought to you by:
intesar66
From: Sean M. <int...@us...> - 2005-11-23 03:00:51
|
Update of /cvsroot/adapdev/Adapdev/src/Adapdev.UnitTest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24316/src/Adapdev.UnitTest Modified Files: Adapdev.UnitTest.csproj TestAttribute.cs Added Files: TransactionType.cs Log Message: --- NEW FILE: TransactionType.cs --- using System; namespace Adapdev.UnitTest { /// <summary> /// Summary description for TransactionType. /// </summary> public enum TransactionType { None, AutoCommit, AutoRollback } } Index: Adapdev.UnitTest.csproj =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.UnitTest/Adapdev.UnitTest.csproj,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Adapdev.UnitTest.csproj 16 Nov 2005 07:02:00 -0000 1.8 --- Adapdev.UnitTest.csproj 23 Nov 2005 03:00:42 -0000 1.9 *************** *** 146,150 **** /> <File ! RelPath = "RollbackTransaction.cs" SubType = "Code" BuildAction = "Compile" --- 146,150 ---- /> <File ! RelPath = "RollbackTransactionAttribute.cs" SubType = "Code" BuildAction = "Compile" *************** *** 201,205 **** /> <File ! RelPath = "Transaction.cs" SubType = "Code" BuildAction = "Compile" --- 201,210 ---- /> <File ! RelPath = "TransactionAttribute.cs" ! SubType = "Code" ! BuildAction = "Compile" ! /> ! <File ! RelPath = "TransactionType.cs" SubType = "Code" BuildAction = "Compile" Index: TestAttribute.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.UnitTest/TestAttribute.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestAttribute.cs 16 Nov 2005 07:02:00 -0000 1.5 --- TestAttribute.cs 23 Nov 2005 03:00:42 -0000 1.6 *************** *** 45,48 **** --- 45,49 ---- private string _description = ""; private TestType _testType = TestType.Unit; + private TransactionType _transactionType = TransactionType.None; /// <summary> *************** *** 74,77 **** --- 75,84 ---- } + public TransactionType TransactionType + { + get { return _transactionType; } + set { _transactionType = value; } + } + } } \ No newline at end of file |