Click here to Skip to main content
15,878,852 members
Articles / Web Development / ASP.NET

Unit Testing a DotNetNuke Private Assembly Module

Rate me:
Please Sign up or sign in to vote.
4.69/5 (10 votes)
18 Jun 2007CPOL18 min read 82.9K   703   35  
This article describes how to create unit tests that will test out code for a DotNetNuke custom module.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DnnUnitTesting", "DnnUnitTesting\DnnUnitTesting.csproj", "{EB66152A-E972-4890-B122-EB4BD38741B1}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C32E21FA-EF0D-4370-B225-16606D2671C1}"
	ProjectSection(SolutionItems) = preProject
		DnnUnitTesting.vsmdi = DnnUnitTesting.vsmdi
		localtestrun.testrunconfig = localtestrun.testrunconfig
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "iFinity.DNN.Utilities", "iFinity.DnnUtilities\iFinity.DNN.Utilities.csproj", "{5C204DDC-A085-4086-B0CE-9125076FDDF2}"
EndProject
Global
	GlobalSection(TestCaseManagementSettings) = postSolution
		CategoryFile = DnnUnitTesting.vsmdi
	EndGlobalSection
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{EB66152A-E972-4890-B122-EB4BD38741B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{EB66152A-E972-4890-B122-EB4BD38741B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{EB66152A-E972-4890-B122-EB4BD38741B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{EB66152A-E972-4890-B122-EB4BD38741B1}.Release|Any CPU.Build.0 = Release|Any CPU
		{5C204DDC-A085-4086-B0CE-9125076FDDF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{5C204DDC-A085-4086-B0CE-9125076FDDF2}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{5C204DDC-A085-4086-B0CE-9125076FDDF2}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{5C204DDC-A085-4086-B0CE-9125076FDDF2}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Product Manager DNN Corp
Australia Australia
Bruce Chapman is the Product Manager for Cloud Services at DNN. He’s been an active member of the DNN Community since 2006 as a contributor, vendor and now employee of DNN Corp.

You can read his blog at http://dnnsoftware.com/blog or follow him on Twitter @brucerchapman

Comments and Discussions