~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to addins/RowTest/Release Notes.txt

  • Committer: charliepoole
  • Date: 2008-05-05 22:17:22 UTC
  • Revision ID: vcs-imports@canonical.com-20080505221722-7bdjujqed8pk6al3
Add back RowTestExtension as a separately compiled assembly, bundled
with NUnit, and modify build script to handle addins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Version 1.2.2 - (2008-03-27)
 
2
----------------------------
 
3
 
 
4
* null cannot be used as argument on .NET Framework 1.1. A new enum value SpecialValue.Null can be
 
5
  used instead. If the RowTest addin finds this value as argument the value will be translated to
 
6
  null.
 
7
* Fixed Bug: Common NUnit attributes like Category, Description etc. don't work for RowTest
 
8
  methods.
 
9
 
 
10
 
 
11
Version 1.2.1 - (2008-02-17)
 
12
----------------------------
 
13
 
 
14
* Fixed Bug: SetUp and TearDown are not called on RowTestSuite.
 
15
* Created new Test project for functional tests and reorganized samples.
 
16
 
 
17
 
 
18
Version 1.2.0 - (2008-01-29)
 
19
----------------------------
 
20
 
 
21
* Added build for .NET Framework 1.1.
 
22
* Assemblies are now strongly named.
 
23
* Added ExceptionMessage property to the [Row] attribute. It can be used to specify the
 
24
  message of an expected exception.
 
25
* Added TestName property to the [Row] attribute. It is used to provide a custom name
 
26
  of the test. If TestName is null or empty the method name will be used.
 
27
* Fixed Bug: TestFixtureSetUp and TestFixtureTearDown are not called on the RowTest
 
28
  TestSuite.
 
29
* Fixed Bug: When a TestFixture contains both RowTests and normal unit tests the row tests
 
30
  are not alphabetically ordered.
 
31
 
 
32
 
 
33
Version 1.1.0 - (2007-10-27)
 
34
----------------------------
 
35
 
 
36
* Added ExpectedException property to the [Row] attribute. It can be used to specify
 
37
  which type of exception to expect when the given data is passed to the test.
 
38
* The [Row] attribute accepts now null values.
 
39
* Removed dependency from assembly NUnitExtension.RowTest.AddIn to NUnitExtension.RowTest.
 
40
 
 
41
 
 
42
Version 1.0.0 - (2007-08-17)
 
43
----------------------------
 
44
 
 
45
Initial release.
 
46
 
 
47
* Data-driven tests can be marked with the [RowTest] attribute.
 
48
* Data for a RowTest can be specified by using the [Row] attribute.