# HG changeset patch # User stevenhollidge # Date 1336211389 -3600 # Node ID be4d751f6bff120e01d92fa01eeac11a7574c20d # Parent 03272bcb3cc0c704eaacb3f71df427c138a7065d Unit test project added diff -r 03272bcb3cc0 -r be4d751f6bff SilverlightValidation/Libs/Microsoft.Silverlight.Testing.dll Binary file SilverlightValidation/Libs/Microsoft.Silverlight.Testing.dll has changed diff -r 03272bcb3cc0 -r be4d751f6bff SilverlightValidation/Libs/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll Binary file SilverlightValidation/Libs/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll has changed diff -r 03272bcb3cc0 -r be4d751f6bff SilverlightValidation/Libs/NUnit.Silverlight.Compatibility.dll Binary file SilverlightValidation/Libs/NUnit.Silverlight.Compatibility.dll has changed diff -r 03272bcb3cc0 -r be4d751f6bff SilverlightValidation/Libs/NUnit.Silverlight.Framework.dll Binary file SilverlightValidation/Libs/NUnit.Silverlight.Framework.dll has changed diff -r 03272bcb3cc0 -r be4d751f6bff SilverlightValidation/Libs/NUnit.Silverlight.Metadata.dll Binary file SilverlightValidation/Libs/NUnit.Silverlight.Metadata.dll has changed diff -r 03272bcb3cc0 -r be4d751f6bff SilverlightValidation/SilverlightValidation.Tests/Properties/AppManifest.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SilverlightValidation/SilverlightValidation.Tests/Properties/AppManifest.xml Sat May 05 10:49:49 2012 +0100 @@ -0,0 +1,7 @@ + + + + + diff -r 03272bcb3cc0 -r be4d751f6bff SilverlightValidation/SilverlightValidation.Tests/Properties/AssemblyInfo.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SilverlightValidation/SilverlightValidation.Tests/Properties/AssemblyInfo.cs Sat May 05 10:49:49 2012 +0100 @@ -0,0 +1,37 @@ +// Copyright © 2012 + +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("SilverlightValidation.Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("SilverlightValidation.Tests")] +[assembly: AssemblyCopyright("Copyright © 2012")] +[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("1196b633-7f87-485e-bd47-f3d2943a59e4")] + +// 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 Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file diff -r 03272bcb3cc0 -r be4d751f6bff SilverlightValidation/SilverlightValidation.Tests/SilverlightValidation.Tests.csproj --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SilverlightValidation/SilverlightValidation.Tests/SilverlightValidation.Tests.csproj Sat May 05 10:49:49 2012 +0100 @@ -0,0 +1,126 @@ + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {12AE7560-AD64-4635-8A6B-772256FF0EDD} + {A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + SilverlightValidation.Tests + SilverlightValidation.Tests + Silverlight + v5.0 + $(TargetFrameworkVersion) + true + + true + true + SilverlightValidation.Tests.xap + Properties\AppManifest.xml + SilverlightValidation.Tests.App + TestPage.html + true + true + false + Properties\OutOfBrowserSettings.xml + false + true + + + + + + + v3.5 + + + true + full + false + Bin\Debug + DEBUG;TRACE;SILVERLIGHT + true + true + prompt + 4 + + + pdbonly + true + Bin\Release + TRACE;SILVERLIGHT + true + true + prompt + 4 + + + + ..\Libs\Microsoft.Silverlight.Testing.dll + + + ..\Libs\Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll + + + ..\Libs\NUnit.Silverlight.Compatibility.dll + + + ..\Libs\NUnit.Silverlight.Framework.dll + + + ..\Libs\NUnit.Silverlight.Metadata.dll + + + + + + + + + + + + + + + + + + + + {0C1CC1FC-915A-4428-8952-CDC79EABC3F4} + SilverlightValidation + + + + + + + + + + + + + + + + \ No newline at end of file diff -r 03272bcb3cc0 -r be4d751f6bff SilverlightValidation/SilverlightValidation.Tests/ViewModels/UserListViewModel.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SilverlightValidation/SilverlightValidation.Tests/ViewModels/UserListViewModel.cs Sat May 05 10:49:49 2012 +0100 @@ -0,0 +1,15 @@ + +using NUnit.Framework; + +namespace SilverlightValidation.Tests.ViewModels +{ + [TestFixture] + public class UserListViewModelTests + { + [Test] + public void Given_When_Then() + { + Assert.True(true); + } + } +} \ No newline at end of file diff -r 03272bcb3cc0 -r be4d751f6bff SilverlightValidation/SilverlightValidation.Tests/ViewModels/UserViewModel.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SilverlightValidation/SilverlightValidation.Tests/ViewModels/UserViewModel.cs Sat May 05 10:49:49 2012 +0100 @@ -0,0 +1,15 @@ + +using NUnit.Framework; + +namespace SilverlightValidation.Tests.ViewModels +{ + [TestFixture] + public class UserViewModelTests + { + [Test] + public void Given_When_Then() + { + Assert.True(true); + } + } +} \ No newline at end of file diff -r 03272bcb3cc0 -r be4d751f6bff SilverlightValidation/SilverlightValidation.sln --- a/SilverlightValidation/SilverlightValidation.sln Mon Apr 30 11:06:39 2012 +0100 +++ b/SilverlightValidation/SilverlightValidation.sln Sat May 05 10:49:49 2012 +0100 @@ -5,6 +5,8 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SilverlightValidation.Web", "SilverlightValidation.Web\SilverlightValidation.Web.csproj", "{E65C6757-932B-4D01-9A8A-6D02F8FAA25A}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SilverlightValidation.Tests", "SilverlightValidation.Tests\SilverlightValidation.Tests.csproj", "{12AE7560-AD64-4635-8A6B-772256FF0EDD}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -19,6 +21,10 @@ {E65C6757-932B-4D01-9A8A-6D02F8FAA25A}.Debug|Any CPU.Build.0 = Debug|Any CPU {E65C6757-932B-4D01-9A8A-6D02F8FAA25A}.Release|Any CPU.ActiveCfg = Release|Any CPU {E65C6757-932B-4D01-9A8A-6D02F8FAA25A}.Release|Any CPU.Build.0 = Release|Any CPU + {12AE7560-AD64-4635-8A6B-772256FF0EDD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {12AE7560-AD64-4635-8A6B-772256FF0EDD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {12AE7560-AD64-4635-8A6B-772256FF0EDD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {12AE7560-AD64-4635-8A6B-772256FF0EDD}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE