diff --git a/Unit Tests/AForge.Imaging.Tests/AForge.Imaging.Tests.csproj b/Unit Tests/AForge.Imaging.Tests/AForge.Imaging.Tests.csproj index 1baebc03..e9164e3e 100644 --- a/Unit Tests/AForge.Imaging.Tests/AForge.Imaging.Tests.csproj +++ b/Unit Tests/AForge.Imaging.Tests/AForge.Imaging.Tests.csproj @@ -6,7 +6,7 @@ 9.0.30729 2.0 {539229BC-D68C-4FF0-84BC-904A90ECEBE0} - Exe + Library Properties AForge.Imaging.Tests AForge.Imaging.Tests @@ -64,9 +64,8 @@ AForge.Imaging.snk - - False - ..\..\Sources\packages\NUnitLite.1.0.0\lib\net40\nunitlite.dll + + ..\..\Sources\packages\NUnit.2.6.3\lib\nunit.framework.dll False @@ -79,7 +78,6 @@ - diff --git a/Unit Tests/AForge.Imaging.Tests/Program.cs b/Unit Tests/AForge.Imaging.Tests/Program.cs deleted file mode 100644 index 22c28a03..00000000 --- a/Unit Tests/AForge.Imaging.Tests/Program.cs +++ /dev/null @@ -1,81 +0,0 @@ -// *********************************************************************** -// Copyright (c) 2009 Charlie Poole -// -// 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. -// *********************************************************************** - -using System; -using System.IO; -using NUnitLite.Runner; -using NUnit.Framework.Internal; - -namespace NUnitLite.Tests -{ - public class Program - { - // The main program executes the tests. Output may be routed to - // various locations, depending on the arguments passed. - // - // Arguments: - // - // Arguments may be names of assemblies or options prefixed with '/' - // or '-'. Normally, no assemblies are passed and the calling - // assembly (the one containing this Main) is used. The following - // options are accepted: - // - // -test: Provides the name of a test to be exected. - // May be repeated. If this option is not used, - // all tests are run. - // - // -out:PATH Path to a file to which output is written. - // If omitted, Console is used, which means the - // output is lost on a platform with no Console. - // - // -full Print full report of all tests. - // - // -result:PATH Path to a file to which the XML test result is written. - // - // -explore[:Path] If specified, list tests rather than executing them. If a - // path is given, an XML file representing the tests is written - // to that location. If not, output is written to tests.xml. - // - // -noheader,noh Suppress display of the initial message. - // - // -wait Wait for a keypress before exiting. - // - // -include:categorylist - // If specified, nunitlite will only run the tests with a category - // that is in the comma separated list of category names. - // Example usage: -include:category1,category2 this command can be used - // in combination with the -exclude option also note that exlude takes priority - // over all includes. - // - // -exclude:categorylist - // If specified, nunitlite will not run any of the tests with a category - // that is in the comma separated list of category names. - // Example usage: -exclude:category1,category2 this command can be used - // in combination with the -include option also note that exclude takes priority - // over all includes - public static void Main(string[] args) - { - new TextUI().Execute(args); - } - } -} \ No newline at end of file diff --git a/Unit Tests/AForge.Imaging.Tests/packages.config b/Unit Tests/AForge.Imaging.Tests/packages.config index 1716dfd3..c450398f 100644 --- a/Unit Tests/AForge.Imaging.Tests/packages.config +++ b/Unit Tests/AForge.Imaging.Tests/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/Unit Tests/AForge.Math.Tests/AForge.Math.Tests.csproj b/Unit Tests/AForge.Math.Tests/AForge.Math.Tests.csproj index 99a79e2e..66871646 100644 --- a/Unit Tests/AForge.Math.Tests/AForge.Math.Tests.csproj +++ b/Unit Tests/AForge.Math.Tests/AForge.Math.Tests.csproj @@ -6,7 +6,7 @@ 9.0.30729 2.0 {8CE6D122-788B-47C3-8749-15FD584C26F6} - Exe + Library Properties AForge.Math.Tests AForge.Math.Tests @@ -58,9 +58,9 @@ - - False - ..\..\Sources\packages\NUnitLite.1.0.0\lib\net45\nunitlite.dll + + ..\..\Sources\packages\NUnit.2.6.3\lib\nunit.framework.dll + True ..\..\Sources\packages\shim.0.9.0-pre\lib\net45\Shim.dll @@ -85,7 +85,6 @@ - diff --git a/Unit Tests/AForge.Math.Tests/Program.cs b/Unit Tests/AForge.Math.Tests/Program.cs deleted file mode 100644 index 22c28a03..00000000 --- a/Unit Tests/AForge.Math.Tests/Program.cs +++ /dev/null @@ -1,81 +0,0 @@ -// *********************************************************************** -// Copyright (c) 2009 Charlie Poole -// -// 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. -// *********************************************************************** - -using System; -using System.IO; -using NUnitLite.Runner; -using NUnit.Framework.Internal; - -namespace NUnitLite.Tests -{ - public class Program - { - // The main program executes the tests. Output may be routed to - // various locations, depending on the arguments passed. - // - // Arguments: - // - // Arguments may be names of assemblies or options prefixed with '/' - // or '-'. Normally, no assemblies are passed and the calling - // assembly (the one containing this Main) is used. The following - // options are accepted: - // - // -test: Provides the name of a test to be exected. - // May be repeated. If this option is not used, - // all tests are run. - // - // -out:PATH Path to a file to which output is written. - // If omitted, Console is used, which means the - // output is lost on a platform with no Console. - // - // -full Print full report of all tests. - // - // -result:PATH Path to a file to which the XML test result is written. - // - // -explore[:Path] If specified, list tests rather than executing them. If a - // path is given, an XML file representing the tests is written - // to that location. If not, output is written to tests.xml. - // - // -noheader,noh Suppress display of the initial message. - // - // -wait Wait for a keypress before exiting. - // - // -include:categorylist - // If specified, nunitlite will only run the tests with a category - // that is in the comma separated list of category names. - // Example usage: -include:category1,category2 this command can be used - // in combination with the -exclude option also note that exlude takes priority - // over all includes. - // - // -exclude:categorylist - // If specified, nunitlite will not run any of the tests with a category - // that is in the comma separated list of category names. - // Example usage: -exclude:category1,category2 this command can be used - // in combination with the -include option also note that exclude takes priority - // over all includes - public static void Main(string[] args) - { - new TextUI().Execute(args); - } - } -} \ No newline at end of file diff --git a/Unit Tests/AForge.Math.Tests/packages.config b/Unit Tests/AForge.Math.Tests/packages.config index d7dee320..c450398f 100644 --- a/Unit Tests/AForge.Math.Tests/packages.config +++ b/Unit Tests/AForge.Math.Tests/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/Unit Tests/AForge.Tests/AForge.Tests.csproj b/Unit Tests/AForge.Tests/AForge.Tests.csproj index 3de1e130..e3f6e9e2 100644 --- a/Unit Tests/AForge.Tests/AForge.Tests.csproj +++ b/Unit Tests/AForge.Tests/AForge.Tests.csproj @@ -6,7 +6,7 @@ 9.0.30729 2.0 {72B5500A-624D-4590-8C85-4318EFB57D76} - Exe + Library Properties AForge.Tests AForge.Tests @@ -58,9 +58,8 @@ - - ..\..\Sources\packages\NUnitLite.1.0.0\lib\net40\nunitlite.dll - True + + ..\..\Sources\packages\NUnit.2.6.3\lib\nunit.framework.dll False @@ -75,7 +74,6 @@ - diff --git a/Unit Tests/AForge.Tests/Program.cs b/Unit Tests/AForge.Tests/Program.cs deleted file mode 100644 index 22c28a03..00000000 --- a/Unit Tests/AForge.Tests/Program.cs +++ /dev/null @@ -1,81 +0,0 @@ -// *********************************************************************** -// Copyright (c) 2009 Charlie Poole -// -// 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. -// *********************************************************************** - -using System; -using System.IO; -using NUnitLite.Runner; -using NUnit.Framework.Internal; - -namespace NUnitLite.Tests -{ - public class Program - { - // The main program executes the tests. Output may be routed to - // various locations, depending on the arguments passed. - // - // Arguments: - // - // Arguments may be names of assemblies or options prefixed with '/' - // or '-'. Normally, no assemblies are passed and the calling - // assembly (the one containing this Main) is used. The following - // options are accepted: - // - // -test: Provides the name of a test to be exected. - // May be repeated. If this option is not used, - // all tests are run. - // - // -out:PATH Path to a file to which output is written. - // If omitted, Console is used, which means the - // output is lost on a platform with no Console. - // - // -full Print full report of all tests. - // - // -result:PATH Path to a file to which the XML test result is written. - // - // -explore[:Path] If specified, list tests rather than executing them. If a - // path is given, an XML file representing the tests is written - // to that location. If not, output is written to tests.xml. - // - // -noheader,noh Suppress display of the initial message. - // - // -wait Wait for a keypress before exiting. - // - // -include:categorylist - // If specified, nunitlite will only run the tests with a category - // that is in the comma separated list of category names. - // Example usage: -include:category1,category2 this command can be used - // in combination with the -exclude option also note that exlude takes priority - // over all includes. - // - // -exclude:categorylist - // If specified, nunitlite will not run any of the tests with a category - // that is in the comma separated list of category names. - // Example usage: -exclude:category1,category2 this command can be used - // in combination with the -include option also note that exclude takes priority - // over all includes - public static void Main(string[] args) - { - new TextUI().Execute(args); - } - } -} \ No newline at end of file diff --git a/Unit Tests/AForge.Tests/packages.config b/Unit Tests/AForge.Tests/packages.config index 1716dfd3..c450398f 100644 --- a/Unit Tests/AForge.Tests/packages.config +++ b/Unit Tests/AForge.Tests/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file