Projects tagged ‘unittest’


[129 total ]

191 Users
   

In the last decade, PHP has developed from a niche language for adding dynamic functionality to small websites to a powerful tool making strong inroads into large-scale Web systems. Critical business ... [More] logic like this needs to work correctly. But how do you ensure that it does? You test it, of course. To make code testing viable, good tool support is needed. This is where PHPUnit comes into play. [Less]
Created over 3 years ago.

8 Users

nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to too much magic. ... [More] nose has recently migrated from another host; if you recently filed a ticket at the old trac site, you may want to check the issues list here to make sure it made the journey. [Less]
Created about 1 year ago.

4 Users
 

ASTUce is a regression testing framework inspired by the xUnit architecture. This framework is intended for developers who wish to implement unit tests in ECMAScript (ECMA-262) and ActionScript 3. ... [More] ASTUce is also a cross-platform (OS X / Linux / Windows) client that can run your unit tests on the command-line (yeah for real). [Less]
Created about 1 year ago.

2 Users
   

Python unittest-based test runner with JUnit like XML reporting.
Created about 1 year ago.

1 Users

This is a Google Summer of Code project. WHATA multi-platform TCP/IP v4 Stack Testing Tool, As a testing tool, it can perform regression, protocol conformance, and fuzz tests. The tool may also ... [More] be employed as an aid to protocol developers and both testing and debugging of firewalls/routers. USINGIt's built on top of PCS(Packet Construction Set) "PCS is a set of Python modules and objects that make building network protocol code easier for the protocol developer. The core of the system is the pcs module itself which provides the necessary functionality to create classes that implement packets." http://pcs.sourceforge.net/ PCS enables testing at OSI layers 3, 4, and 5. HOWTcptest mainly is a python module and one script for each test covered (more then one per script often) The modul [Less]
Created about 1 year ago.

1 Users

CSharpTest.Net is collection of utilities and tools used for the development of larger software projects. It has (or will have) a wide array of small discrete projects and some stand-alone source ... [More] files for use. Generally developed with the intent to meet the following goals: * Provide an open source code library for basic needs not met by the core .Net Framework infrastructure. * Demonstrate a real-world example of keeping code simple by design. * Show proven best-practices of delivering solid code with coverage-based testing. [Less]
Created 9 months ago.

1 Users

MXUnit is a unit testing framework for ColdFusion MX built upon the popular JUnit test framework. It is designed to get you up and running quickly writing tests for your CFMX components.
Created about 1 year ago.

1 Users

The official project page for the C++ Project Template is: http://code.google.com/p/cpp-project-template/ Ohloh has shamelessly stolen web traffic away from the project's official page. We would ... [More] appreciate it if, when linking to the C++ Project Template, that you link to the official project page rather than to Ohloh's copy-cat page. [Less]
Created 3 months ago.

1 Users

FsUnit is a stand-alone specification framework for use with the F# programming language. Written itself in F#, it offers a functional alternative to traditional imperative frameworks.Specification ... [More] SyntaxWith FsUnit, you can write specifications like this: One object equals or does not equal another: 1 |> should equal 1 1 |> should not' (equal 2)A collection type contains or does not contain a value: ["item"] |> should contain "item" ["item"] |> should not' (contain "not item")A collection type has a certain number of items: personList |> should have 4 "people"A function should throw a certain type of exception: (fun () -> failwith "BOOM!") |> should (raise')Boolean, Null, NullOrEmpty, Empty, and SameAs assertions have their own helpers: true |> should be True false |> should not' (be True) "" |> should be Empty "a string" |> should not' (be Empty) "" |> should be NullOrEmpty null |> should be NullOrEmpty null |> should be Null anObj |> should not' (be Null) anObj |> should be (SameAs(otherObj))The specs and spec KeywordsLet FsUnit manage the storage and execution of your specs, use the specs keyword: specs "My Specs" [ spec "A number should equal itself." (1 |> should equal 1) ] printfn "%s" (Results.summary())For more examples of using the spec and specs keywords, see the examples. FULL EXAMPLEThe full code for a specification in FsUnit looks like this: #light #r "FsUnit.dll" open FsUnit type LightBulb(state) = member x.On = state override x.ToString() = match x.On with | true -> "On" | false -> "Off" let onSpecs = let lb = LightBulb(true) specs "On Specs" [ spec "On should be true." (lb.On |> should be True) spec "String representation should equal \"On\"." (lb.ToString() |> should equal "On") ] let offSpecs = let lb = LightBulb(false) specs "Off Specs" [ spec "Off should be false." (lb.On |> should be False) spec "String representation should equal \"Off\"." (lb.ToString() |> should equal "Off") ] printfn "%s" (Results.summary()) [Less]
Created about 1 year ago.

1 Users
 

Astre is an open-source unit test framework that enhances the experience of the software developer and the tester, by providing convenient features for quickly writing efficient tests. It also comes ... [More] with a set of tools that makes easier the practice of Test Driven Development in the world of ActionScript 3.0. [Less]
Created 11 months ago.