Tags : Browse Projects

Select a tag to browse associated projects and drill deeper into the tag cloud.

BPELUnit

Compare

  No analysis available

BPELUnit is a testing framework for real-life, automated, repeatable white-box unit testing of BPEL compositions. BPELUnit follows the xUnit approach and comes with test runners for the command line, Ant, and Eclipse.

0 lines of code

0 current contributors

0 since last commit

0 users on Open Hub

Activity Not Available
0.0
 
I Use This
Mostly written in language not available
Licenses: eclipse

PCUT: Plain C Unit Testing

Compare

  Analyzed about 18 hours ago

PCUT is a very simple framework for unit testing of C code. Unlike many other frameworks where you need to specify manually which functions belong to a particular test, PCUT provides several smart macros that hides this and lets you focus on the most important part of testing only: that is, coding ... [More] the test cases. Tests for the standard atoi() function may look like this: #include < pcut/pcut.h > #include < stdlib.h > PCUT_INIT PCUT_TEST(atoi_zero) { PCUT_ASSERT_INT_EQUALS(0, atoi("0")); } PCUT_TEST(atoi_positive) { PCUT_ASSERT_INT_EQUALS(42, atoi("42")); } PCUT_TEST(atoi_negative) { PCUT_ASSERT_INT_EQUALS(-273, atoi("-273")); } PCUT_MAIN() [Less]

3.42K lines of code

1 current contributors

9 months since last commit

0 users on Open Hub

Very Low Activity
0.0
 
I Use This

pgUnitTest

Compare

  No analysis available

pgUnitTest is a tool to run a unit test suite on PostgreSQL databases. The unit tests concern database queries and can be select statements with a result expected or insert statements using random data generators.

0 lines of code

0 current contributors

0 since last commit

0 users on Open Hub

Activity Not Available
0.0
 
I Use This
Mostly written in language not available
Licenses: BSD-3-Clause

GNU Autounit

Compare

  No analysis available

GNU Autounit: Unit Testing Frameworks for Autoconf GNU Autounit's goal is to provide a common unit testing framework for application developers who use GNU Autoconf already in their projects but do not currently use a unit testing framework. This release of GNU Autounit (0.15.2) has support ... [More] for unit testing in C ('c-unit') and adds support for Guile ('guile-unit') written by [Less]

0 lines of code

0 current contributors

0 since last commit

0 users on Open Hub

Activity Not Available
0.0
 
I Use This
Mostly written in language not available
Licenses: GPL2

mutest

Compare

  No analysis available

A micro unit testing framework for C (with some C++ support). It's mostly an idea (it even comes with 2 implementations of the idea!) with the goal of being easy to use (just write your test cases grouped in test suites and you're set) and so small and simple that you don't mind to copy the files to ... [More] your project and just use it (i.e., no dependencies). [Less]

0 lines of code

0 current contributors

0 since last commit

0 users on Open Hub

Activity Not Available
0.0
 
I Use This
Mostly written in language not available
Licenses: No declared licenses

tap4embedded

Compare

  Analyzed about 17 hours ago

tap4embedded is a TAP producer library designed for C embedded. It allows a simple and efficient way to write unit tests in C. The output uses the Test Anything Protocol, that allows a compatibility with the Perl QA ecosystem. Design Goals: 1. simple and transparent (ie. no automagic) ... [More] 2. works with deeply embedded system toolchains (ie. libc minimalist prerequisites) 3. allows dual targeting (x100 faster on host than on target) 4. reuse a well-known output format which is already handled by most of the continuous integration tools [Less]

1.36K lines of code

0 current contributors

over 6 years since last commit

0 users on Open Hub

Inactive
0.0
 
I Use This

CppTest

Compare

  No analysis available

CppTest is a portable and powerful, yet simple, unit testing framework for handling automated tests in C++. The focus lies on usability and extendability. Several output formats are supported and new ones are easily added.

0 lines of code

0 current contributors

0 since last commit

0 users on Open Hub

Activity Not Available
0.0
 
I Use This
Mostly written in language not available
Licenses: No declared licenses

BlockyTests

Compare

  No analysis available

blockyTests is a very light-weight javascript unit test library. BlockyTests is designed for web developers that want to test their websites but don't need/want to go through the hassle of trying to integrate javascript unit tests into their web application build process.

0 lines of code

0 current contributors

0 since last commit

0 users on Open Hub

Activity Not Available
0.0
 
I Use This
Mostly written in language not available
Licenses: No declared licenses

DelphiSpec

Compare

  Analyzed about 21 hours ago

Delphi library for running automated tests written in plain language

1.81K lines of code

0 current contributors

about 9 years since last commit

0 users on Open Hub

Inactive
0.0
 
I Use This

snaptest

Compare

  No analysis available

Snap Unit TestingSnapTest can be obtained via the following repositories and methods: Git Repository: git://github.com/Jakobo/snaptest.git A browseable version of the history is available at http://github.com/Jakobo/snaptest "Mission Statement" of SortsTo put it simply, unit testing should ... [More] be transparent. There shouldn't be the complexity of test harnesses and coding out stub files. This functionality should be there if you want it, but the barrier to writing tests should be so low that it becomes easier to write the test than the code itself. It is on this philosophy that SnapTest was built. These are some of the goals of SnapTest and the SnapTest project (or at least a concept of what we are trying to do here) in no particular order: Build a PHP unit testing framework Create a 0-effort harness. Easy to run the code, easy to get results Maintain transparency in the code and the community Be as non-intrusive as possible Be memory efficient Link to complex infrastructures easily Take advantage of the OO structure PHP 5 provides Emphasize end-users as one of the most important resources Promote unit testing in a non-oo PHP world Code quickly; it's a snap. [Less]

0 lines of code

0 current contributors

0 since last commit

0 users on Open Hub

Activity Not Available
0.0
 
I Use This
Mostly written in language not available
Licenses: bsd