Click here to Skip to main content
15,895,084 members
Articles / DevOps / Unit Testing

All About Test Part 1 - Choosing Your Tests

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
21 Jan 2013CPOL21 min read 19.5K   147   12  
Beyond basic unit tests, how do you choose your tests and when are you done?

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DateTimeTests", "DateTimeTests\DateTimeTests.csproj", "{BBF8C24C-1667-492F-8993-ACF2BA214798}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RandomArray", "RandomArray\RandomArray.csproj", "{E8555A58-C350-47CE-9868-BFB3D9C67CB7}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Debug|x86 = Debug|x86
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{BBF8C24C-1667-492F-8993-ACF2BA214798}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{BBF8C24C-1667-492F-8993-ACF2BA214798}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{BBF8C24C-1667-492F-8993-ACF2BA214798}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{BBF8C24C-1667-492F-8993-ACF2BA214798}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{BBF8C24C-1667-492F-8993-ACF2BA214798}.Debug|x86.ActiveCfg = Debug|Any CPU
		{BBF8C24C-1667-492F-8993-ACF2BA214798}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{BBF8C24C-1667-492F-8993-ACF2BA214798}.Release|Any CPU.Build.0 = Release|Any CPU
		{BBF8C24C-1667-492F-8993-ACF2BA214798}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{BBF8C24C-1667-492F-8993-ACF2BA214798}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{BBF8C24C-1667-492F-8993-ACF2BA214798}.Release|x86.ActiveCfg = Release|Any CPU
		{E8555A58-C350-47CE-9868-BFB3D9C67CB7}.Debug|Any CPU.ActiveCfg = Debug|x86
		{E8555A58-C350-47CE-9868-BFB3D9C67CB7}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
		{E8555A58-C350-47CE-9868-BFB3D9C67CB7}.Debug|Mixed Platforms.Build.0 = Debug|x86
		{E8555A58-C350-47CE-9868-BFB3D9C67CB7}.Debug|x86.ActiveCfg = Debug|x86
		{E8555A58-C350-47CE-9868-BFB3D9C67CB7}.Debug|x86.Build.0 = Debug|x86
		{E8555A58-C350-47CE-9868-BFB3D9C67CB7}.Release|Any CPU.ActiveCfg = Release|x86
		{E8555A58-C350-47CE-9868-BFB3D9C67CB7}.Release|Mixed Platforms.ActiveCfg = Release|x86
		{E8555A58-C350-47CE-9868-BFB3D9C67CB7}.Release|Mixed Platforms.Build.0 = Release|x86
		{E8555A58-C350-47CE-9868-BFB3D9C67CB7}.Release|x86.ActiveCfg = Release|x86
		{E8555A58-C350-47CE-9868-BFB3D9C67CB7}.Release|x86.Build.0 = Release|x86
	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
Denmark Denmark
I started programming as a kid and went through basic, C and assembler. I got a MSc.CS from University of Aarhus in 1998 and have maintained an interest for computer science ever since, that I enjoy applying to the problems I come across. I have worked in different roles as a programmer, architect, project manager and consulting in many different areas including databases, cryptography, server architecture and distributed systems. I am currently focussing on the testing done during development and seek to improve this through a combination of approach, skill and technology.

Comments and Discussions