Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
csUnit.1.9.2.setup.msi | 2003-09-02 | 1.0 MB | |
csUnit.1.9.2.sources.zip | 2003-09-02 | 474.3 kB | |
csUnit.1.9.2.readme.txt | 2003-09-02 | 3.0 kB | |
Totals: 3 Items | 1.5 MB | 0 |
/////////////////////////////////////////////////////////////////////////////// // Copyright © 2002-2003 by Manfred Lange. All rights reserved. // Copyright © 2003 by Manfred Lange, Markus Renschler, Jake Anderson, and // Piers Lawson. All rights reserved. // Usage of this software only according to the terms of the GNU GPL. /////////////////////////////////////////////////////////////////////////////// csUnit Solution Description =========================== Last change: August 13, 2003. This file describes the purpose of the different projects, which are part of the csUnit solution. csUnit ------ A .NET class library with classes for writing test cases. Will be installed in the global assembly cache (GAC). Furthermore it will be displayed in the "Add Reference" dialog box of Visual Studio. csUnit.Interfaces ----------------- This assembly contains the interface, delegate and event definitions needed for internal communication of the csUnit framework. Don't use, as they are subject to change. csUnit4VS --------- A binary containing the implementation of an Add-in providing integration of csUnitRunner into Visual Studio. csUnit4VSResources ------------------ A resource-only C DLL containing resources to be used by csUnit4VS. csUnitCmd --------- The command line version of csUnit. At this point this is a mock only. csUnitCmdTest ------------- Project containing the tests for the command line interface csUnitCmd. csUnitCore ---------- An assembly that will contain the core classes used by the csUnitGui. The reason for splitting csUnitRunner up into two pieces is better testability. csUnitCoreTest -------------- Assembly containing the tests for csUnitCore. csUnitRunner ------------ A stand-alone application, able to load assemblies containing test cases. Test cases are retrieved from the loaded assembly, executed and their results displayed. csUnitTest ---------- An assembly containing tests for csUnit. csUnitVSWizard -------------- This project implements a generic wizard for creating C#, J#, Visual Basic .NET, and Managed C++ projects containing tests. CSharpDLL --------- A DLL assembly containing a few examples of how to use classes from the csUnit library. The 'CSharpDLL' library is used for testing csUnitRunner. CSharpDLL.withdotinname ----------------------- A DLL assembly used for testing csUnitRunner. CSharpApp --------- An executable containing a test for accessing application configuration files. JSharpDLL --------- A Visual J# .NET example of tests implemented in a class library. VbDLL ----- A Visual Basic .NET example of tests implemented in a class library. VbEXE ----- A Visual Basic .NET example of tests implemented in an application. ManagedCppDLL ------------- A sample showing how to implement tests in a managed C++ library. setup ----- The setup project for installing all binaries and assemblies, which are part of the csUnit solution. --- end of file