Showing posts with label .NET Testing Tool. Show all posts
Showing posts with label .NET Testing Tool. Show all posts

SQL Unit Testing Tools



SPUnit 
Download SpUnit
http://spunit.sourceforge.net/

Description: SPUnit is an application of the popular xUnit framework concept to enable unit testing of SQL Server stored procedures.  SPUnit is (loosely) based on the xUnit family of Unit Test Frameworks. It is intended for testing MS SQL Server stored procedures using actual stored procedures. The idea was to make it really painless to test the code in stored procedures, and facilitate test-first programming of stored procs. It is a port inspired by JUnit, a testing framework for Java, developed by Kent Beck and Erich Gamma, and also, CPPUnit -- a port of JUnit -- developed by Michael Feathers.


Requirement : Windows NT/2000


TSQLUnit
Download TSQLUnit
http://tsqlunit.sourceforge.net

Description: TSQLUnit is a framework to write tests for applications written in Transact-SQL. TSQLUnit is a framework to write tests for applications written in Transact-SQL. It follows the tradition of the "xUnit" framework that is available for almost all programming languages. TSQLUnit is open source, licensed under the LGPL license, which means that it can be used freely even in commercial programs subject to certain restrictions. See the cookbook for an introduction of how to use it.

Requirement: Python


utPLSQL
Download utPLSQL
http://utplsql.sourceforge.net/

Description: utPLSQL is a unit testing framework for programmers using Oracle's PL/SQL language.
Requirement: OS Independent

utPLSQL is a unit testing framework for programmers using Oracle's PL/SQL language. Developed by Steven Feuerstein, author of many books on the subject, it allows the automated testing of packages, functions and procedures. For background on the project and the reasons why this sort of unit testing is a good idea, visit the utPLSQL site of the O'Reilly and Associates Oracle Resource Center.

Microsoft .NET NUnit testing Tools

http://www.nunit.org/

Description: NUnit is a unit-testing framework for all .Net languages.
Initially ported from JUnit, the current version, 2.0 is the second
major release of this xUnit based unit testing tool for Microsoft
.NET. It is written entirely in C# and has been completely redesigned
to take advantage of many .NET language features, for example custom
attributes and other reflection related capabilities. NUnit brings
xUnit to all .NET languages.
Requirement: Windows NT/2000

NUnit Addin for Visual Studio.NET

http://sourceforge.net/projects/nunitaddin/

Description: Point and Test NUnit integration for Visual Studio.NET.
The aim of this project it to simplify testing and debugging using the
NUnit framework inside of Visual Studio.NET.
Requirement: Windows

NUnitAsp

http://nunitasp.sourceforge.net/

Description: NUnitAsp is a tool for automatically testing ASP.NET web
pages. It's an extension to NUnit, a tool for test-driven development
in .NET.
Requirement: Windows NT/2000

NUnitForms

http://nunitforms.sourceforge.net/

Description: An NUnit extension for testing Windows Forms
applications, making it easy to write unit tests for your Windows
Forms classes.
Requirement: Windows NT/2000

Zanebug .NET Testing Tool


Zanebug .NET Testing Tool

http://www.adapdev.com/zanebug/

Description: Zanebug is an advanced unit testing application for .NET. It supports existing NUnit tests, performance metrics, multiple test iterations, in-depth error information, pass / fail stats, perfmon integration, result graphing, etc.
Requirement: Windows

Microsoft .NET Nester testing Tools

Nester

http://nester.sourceforge.net/

Description: Nester is a tool for mutation analysis of your source code in order to assess the adequacy of your tests. It involves modification of programs to see if existing tests can distinguish the original program from the modified program.
Requirement: Win32; .NET Framework 1.1; NUnit 2.1.5

Microsoft .NET CsUnit testing Tools

csUnit

http://www.csunit.org/

Description: csUnit is a unit testing framework for the Microsoft .NET Framework. It targets test driven development using C#, Visual Basic .NET, and managed C++.
Requirement : csUnit has been tested using the Microsoft .NET framework 1.0 Service Pack 2 runtime on an Intel-compatible platform.

Unit Testing with C# Tutorial
How do I make use of the Assert class? How do I implement simple test cases for my class? How do I integrate csUnit with my code? These are some of the questions, which are answered in this all new tutorial.