From 754610b706d3d1848449f27c64411a6ee256dcdc Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Wed, 17 Jun 2015 20:21:10 +0200 Subject: [PATCH] Add Tests project. --- Tests/LabItemTest.cs | 30 ++++++++++ Tests/Properties/AssemblyInfo.cs | 36 ++++++++++++ Tests/Tests.csproj | 94 ++++++++++++++++++++++++++++++++ Tests/Tests.licenseheader | 38 +++++++++++++ Tests/packages.config | 4 ++ zaaReloaded2.sln | 6 ++ 6 files changed, 208 insertions(+) create mode 100755 Tests/LabItemTest.cs create mode 100755 Tests/Properties/AssemblyInfo.cs create mode 100755 Tests/Tests.csproj create mode 100755 Tests/Tests.licenseheader create mode 100755 Tests/packages.config diff --git a/Tests/LabItemTest.cs b/Tests/LabItemTest.cs new file mode 100755 index 0000000..0012bcb --- /dev/null +++ b/Tests/LabItemTest.cs @@ -0,0 +1,30 @@ +/* LabItemTest.cs + * part of zaaReloaded2 + * + * Copyright 2015 Daniel Kraus + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using NUnit.Framework; + +namespace Tests +{ + [TestFixture] + class LabItemTest + { + } +} diff --git a/Tests/Properties/AssemblyInfo.cs b/Tests/Properties/AssemblyInfo.cs new file mode 100755 index 0000000..6f6f347 --- /dev/null +++ b/Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Tests")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("56afd132-e8e7-4975-ab47-b8923471a3cd")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj new file mode 100755 index 0000000..3a13cc7 --- /dev/null +++ b/Tests/Tests.csproj @@ -0,0 +1,94 @@ + + + + Debug + AnyCPU + {529544E3-3C26-4688-B39D-04DA30F05E20} + Library + Properties + Tests + Tests + v4.0 + 512 + {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 10.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages + False + UnitTest + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + False + ..\packages\NUnit.2.6.4\lib\nunit.framework.dll + + + + 3.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + False + + + False + + + False + + + False + + + + + + + + \ No newline at end of file diff --git a/Tests/Tests.licenseheader b/Tests/Tests.licenseheader new file mode 100755 index 0000000..4a8da33 --- /dev/null +++ b/Tests/Tests.licenseheader @@ -0,0 +1,38 @@ +extensions: designer.cs generated.cs +extensions: .cs +/* %FileName% + * part of zaaReloaded2 + * + * Copyright %CurrentYear% Daniel Kraus + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +extensions: .xaml .xml .config .xsd + \ No newline at end of file diff --git a/Tests/packages.config b/Tests/packages.config new file mode 100755 index 0000000..512ce05 --- /dev/null +++ b/Tests/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/zaaReloaded2.sln b/zaaReloaded2.sln index dd88f01..ef73426 100755 --- a/zaaReloaded2.sln +++ b/zaaReloaded2.sln @@ -5,6 +5,8 @@ VisualStudioVersion = 12.0.31101.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "zaaReloaded2", "zaaReloaded2\zaaReloaded2.csproj", "{0478F1B0-17F2-4151-8F93-1CB6EB9732C5}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{529544E3-3C26-4688-B39D-04DA30F05E20}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -15,6 +17,10 @@ Global {0478F1B0-17F2-4151-8F93-1CB6EB9732C5}.Debug|Any CPU.Build.0 = Debug|Any CPU {0478F1B0-17F2-4151-8F93-1CB6EB9732C5}.Release|Any CPU.ActiveCfg = Release|Any CPU {0478F1B0-17F2-4151-8F93-1CB6EB9732C5}.Release|Any CPU.Build.0 = Release|Any CPU + {529544E3-3C26-4688-B39D-04DA30F05E20}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {529544E3-3C26-4688-B39D-04DA30F05E20}.Debug|Any CPU.Build.0 = Debug|Any CPU + {529544E3-3C26-4688-B39D-04DA30F05E20}.Release|Any CPU.ActiveCfg = Release|Any CPU + {529544E3-3C26-4688-B39D-04DA30F05E20}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE