Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2008-11-26 04:15:39 +0300
committerAtsushi Eno <atsushieno@gmail.com>2008-11-26 04:15:39 +0300
commit57bee69973a2c2f90a827d465a180edd06c9f824 (patch)
tree527d03769e213d715f5a82c22781bae2a15ad37c /mcs/nunit24
parentdad9f9a97b9e47aab8a26c481bb6906d93c8648a (diff)
2005-11-25 Atsushi Enomoto <atsushi@ximian.com>
* Makefile, NUnitExtensions/docs : well, just remove those extra empty stuff. svn path=/trunk/mcs/; revision=120037
Diffstat (limited to 'mcs/nunit24')
-rw-r--r--mcs/nunit24/ChangeLog5
-rw-r--r--mcs/nunit24/Makefile4
-rw-r--r--mcs/nunit24/NUnitExtensions/docs/RowTest/License.txt22
-rw-r--r--mcs/nunit24/NUnitExtensions/docs/RowTest/Release Notes.txt48
4 files changed, 6 insertions, 73 deletions
diff --git a/mcs/nunit24/ChangeLog b/mcs/nunit24/ChangeLog
index f9e74063d52..23080990291 100644
--- a/mcs/nunit24/ChangeLog
+++ b/mcs/nunit24/ChangeLog
@@ -1,5 +1,10 @@
2005-11-25 Atsushi Enomoto <atsushi@ximian.com>
+ * Makefile, NUnitExtensions/docs :
+ well, just remove those extra empty stuff.
+
+2005-11-25 Atsushi Enomoto <atsushi@ximian.com>
+
* Makefile : more fix extra distfiles (whitespace in filename).
2005-11-25 Atsushi Enomoto <atsushi@ximian.com>
diff --git a/mcs/nunit24/Makefile b/mcs/nunit24/Makefile
index b3763a7ef18..a8f3d5ff852 100644
--- a/mcs/nunit24/Makefile
+++ b/mcs/nunit24/Makefile
@@ -5,9 +5,7 @@ SUBDIRS = NUnitFramework/framework NUnitCore/interfaces NUnitCore/core \
ConsoleRunner/nunit-console ConsoleRunner/nunit-console-exe
include ../build/rules.make
-DISTFILES = license.rtf nunit.sln nunit_VS2005.sln nunit.snk \
- NUnitExtensions/docs/RowTest/License.txt \
- "NUnitExtensions/docs/RowTest/Release Notes.txt"
+DISTFILES = license.rtf nunit.sln nunit_VS2005.sln nunit.snk
all-local install-local test-local run-test-local run-test-ondotnet-local clean-local uninstall-local doc-update-local:
diff --git a/mcs/nunit24/NUnitExtensions/docs/RowTest/License.txt b/mcs/nunit24/NUnitExtensions/docs/RowTest/License.txt
deleted file mode 100644
index 44d10b59484..00000000000
--- a/mcs/nunit24/NUnitExtensions/docs/RowTest/License.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-Copyright (c) 2007 Andreas Schlapsi
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.
diff --git a/mcs/nunit24/NUnitExtensions/docs/RowTest/Release Notes.txt b/mcs/nunit24/NUnitExtensions/docs/RowTest/Release Notes.txt
deleted file mode 100644
index 0e4459d4823..00000000000
--- a/mcs/nunit24/NUnitExtensions/docs/RowTest/Release Notes.txt
+++ /dev/null
@@ -1,48 +0,0 @@
-Version 1.2.2 - (2008-03-27)
-----------------------------
-
-* null cannot be used as argument on .NET Framework 1.1. A new enum value SpecialValue.Null can be
- used instead. If the RowTest addin finds this value as argument the value will be translated to
- null.
-* Fixed Bug: Common NUnit attributes like Category, Description etc. don't work for RowTest
- methods.
-
-
-Version 1.2.1 - (2008-02-17)
-----------------------------
-
-* Fixed Bug: SetUp and TearDown are not called on RowTestSuite.
-* Created new Test project for functional tests and reorganized samples.
-
-
-Version 1.2.0 - (2008-01-29)
-----------------------------
-
-* Added build for .NET Framework 1.1.
-* Assemblies are now strongly named.
-* Added ExceptionMessage property to the [Row] attribute. It can be used to specify the
- message of an expected exception.
-* Added TestName property to the [Row] attribute. It is used to provide a custom name
- of the test. If TestName is null or empty the method name will be used.
-* Fixed Bug: TestFixtureSetUp and TestFixtureTearDown are not called on the RowTest
- TestSuite.
-* Fixed Bug: When a TestFixture contains both RowTests and normal unit tests the row tests
- are not alphabetically ordered.
-
-
-Version 1.1.0 - (2007-10-27)
-----------------------------
-
-* Added ExpectedException property to the [Row] attribute. It can be used to specify
- which type of exception to expect when the given data is passed to the test.
-* The [Row] attribute accepts now null values.
-* Removed dependency from assembly NUnitExtension.RowTest.AddIn to NUnitExtension.RowTest.
-
-
-Version 1.0.0 - (2007-08-17)
-----------------------------
-
-Initial release.
-
-* Data-driven tests can be marked with the [RowTest] attribute.
-* Data for a RowTest can be specified by using the [Row] attribute.