[Adapdev-commits] Adapdev/src/Adapdev.UnitTest.Core AbstractTest.cs,1.7,1.8 RunTestIterationCommand.
Status: Beta
Brought to you by:
intesar66
From: Sean M. <int...@us...> - 2005-12-30 20:42:20
|
Update of /cvsroot/adapdev/Adapdev/src/Adapdev.UnitTest.Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4251/src/Adapdev.UnitTest.Core Modified Files: AbstractTest.cs RunTestIterationCommand.cs Test.cs TestAssembly.cs TestFixture.cs Log Message: Several bug fixes to the Adapdev.Data.Sql namespace Index: AbstractTest.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.UnitTest.Core/AbstractTest.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** AbstractTest.cs 27 Nov 2005 06:32:43 -0000 1.7 --- AbstractTest.cs 30 Dec 2005 20:42:11 -0000 1.8 *************** *** 1,2 **** --- 1,4 ---- + using System.ComponentModel; + #region Copyright / License Information *************** *** 67,70 **** --- 69,73 ---- } + [Browsable(false)] public int SequenceNumber { *************** *** 103,106 **** --- 106,110 ---- } + [Browsable(false)] public string Name { *************** *** 109,112 **** --- 113,117 ---- } + [Browsable(false)] public bool ShouldRun { *************** *** 115,118 **** --- 120,124 ---- } + [Browsable(false)] public bool ShouldShow { *************** *** 121,124 **** --- 127,131 ---- } + [Browsable(false)] public TestState State { *************** *** 127,130 **** --- 134,138 ---- } + [Browsable(false)] public AbstractTestResult Result { *************** *** 133,136 **** --- 141,145 ---- } + [Browsable(false)] public int Id { *************** *** 149,152 **** --- 158,162 ---- } + [Browsable(false)] public string FullName { Index: RunTestIterationCommand.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.UnitTest.Core/RunTestIterationCommand.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** RunTestIterationCommand.cs 30 Nov 2005 05:08:47 -0000 1.8 --- RunTestIterationCommand.cs 30 Dec 2005 20:42:11 -0000 1.9 *************** *** 77,81 **** ICommand command = new RunMethodCommand(this._method, o); if(this._test.TransactionType == TransactionType.AutoCommit) command = new AutoCommitCommand(command); ! else if(this._test.TransactionType == TransactionType.AutoRollback) command = new AutoRollbackCommand(command); command.Execute(); --- 77,81 ---- ICommand command = new RunMethodCommand(this._method, o); if(this._test.TransactionType == TransactionType.AutoCommit) command = new AutoCommitCommand(command); ! if(this._test.TransactionType == TransactionType.AutoRollback) command = new AutoRollbackCommand(command); command.Execute(); Index: TestFixture.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.UnitTest.Core/TestFixture.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestFixture.cs 16 Nov 2005 07:01:53 -0000 1.5 --- TestFixture.cs 30 Dec 2005 20:42:11 -0000 1.6 *************** *** 1,2 **** --- 1,4 ---- + using System.ComponentModel; + #region Copyright / License Information *************** *** 59,62 **** --- 61,65 ---- } + [Browsable(false)] public string Namespace { *************** *** 65,68 **** --- 68,72 ---- } + [Browsable(false)] public string Class { *************** *** 71,74 **** --- 75,79 ---- } + [Browsable(false)] public TestAssembly Parent { *************** *** 132,135 **** --- 137,141 ---- } + [Browsable(false)] public ArrayList FixtureSetUps { *************** *** 138,141 **** --- 144,148 ---- } + [Browsable(false)] public ArrayList FixtureTearDowns { *************** *** 144,147 **** --- 151,155 ---- } + [Browsable(false)] public ArrayList TestSetUps { *************** *** 150,153 **** --- 158,162 ---- } + [Browsable(false)] public ArrayList TestTearDowns { Index: Test.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.UnitTest.Core/Test.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Test.cs 16 Nov 2005 07:01:53 -0000 1.5 --- Test.cs 30 Dec 2005 20:42:11 -0000 1.6 *************** *** 1,2 **** --- 1,4 ---- + using System.ComponentModel; + #region Copyright / License Information *************** *** 84,87 **** --- 86,90 ---- } + [Browsable(false)] public bool IsFixtureSetUp { *************** *** 90,93 **** --- 93,97 ---- } + [Browsable(false)] public bool IsFixtureTearDown { *************** *** 97,100 **** --- 101,105 ---- } + [Browsable(false)] public bool IsTestSetUp { *************** *** 104,107 **** --- 109,113 ---- } + [Browsable(false)] public bool IsTestTearDown { *************** *** 110,113 **** --- 116,120 ---- } + [Browsable(false)] public TestFixture Parent { *************** *** 121,124 **** --- 128,132 ---- } + [Browsable(false)] public string Method { Index: TestAssembly.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.UnitTest.Core/TestAssembly.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestAssembly.cs 16 Nov 2005 07:01:53 -0000 1.5 --- TestAssembly.cs 30 Dec 2005 20:42:11 -0000 1.6 *************** *** 1,2 **** --- 1,4 ---- + using System.ComponentModel; + #region Copyright / License Information *************** *** 94,97 **** --- 96,100 ---- } + [Browsable(false)] public TestSuite Parent { |