Software Listing: Unittest
- JF Unittest
- License: Freeware
- Price: 0.00

A C++ unittest framework, written out of frustration with the existing unittest frameworks out there. No GUI with colorful progress bars, no dependencies on any other package in the world..
- Publisher: faschingbauer.co.at
- Date: 13-08-2012
- Size: 241 KB
- Platform: Linux
- VS Coverage Analyzer
- License: Shareware

The VS Coverage Analyzer application was developed to be a small tool for analyzing Visual Studio unittest coverage exported XML file.
Each item has a separated filter to control the visibilities of the child items. In the current version you should write filter as XML directly by your self. The format is simple, at least for programmers.
For example, you want to see items that starts with "abc" or "def", and ends with "ghi", you should use
abc
def
ghi
A empty filter is represented by
.
- Publisher: Vczh
- Date:
- Platform: WinOther
- libcfp
- License: Freeware
- Price: 0.00

A Library for Chemical Formula Parsing. Syntax only, no semantics. No external library dependencies, namespace std:: only. Uses UnitTest++ during development to ensure consistent behaviour..
- Publisher: libcfp.berlios.de
- Date: 10-06-2012
- Size: 345 KB
- Platform: Linux, Mac OS X, WinOther
- PyUnitGui
- License: Freeware
- Price: 0.00

PyUnitGui is UnitTest GUI framework for Python programs. NUnit-like look with tests tree hierarchy and with console output window too. Writtem in wxPython it aims to be is as portable as Python and wxPython together are..
- Publisher: pyunitgui.sourceforge.net
- Date: 26-10-2012
- Size: 5624 KB
- Platform: Linux, Mac OS X, WinOther
- ROBOTester
- License: Freeware
- Price: 0.00

ROBOTester is a simple unittest framework for C. It is a combination of a library to build testcases with and perl program that carries out the testcases and summarizes the results..
- Publisher: xs4all.nl
- Date: 12-09-2012
- Size: 83 KB
- Platform: Linux, Unix
- SmallUnit
- License: Freeware
- Price: 0.00

Small UnitTest system for testing software in C + +
SmallUnit License - GNU General Public License (GPL).
- Publisher: Smallunit
- Date:
- Platform: WinOther
- PyTong
- License: Shareware

PyTong is a useful application for the programmers that need to perform tests with the "unittest" module from Python. This graphical interface allows you to view the tests and to select the one that you want to run.
The user can start or stop the tests from the main menu and can view the encountered errors in the lower panel.
.
- Publisher: Wouter Dambrink
- Date:
- Platform: WinOther
- AnyDbTest
- License: Shareware
- Price: 145

AnyDbTest is the first automated DB unit testing tool available using Xml as test case. AnyDbTest is just designed for DBA/DB developers. It supports all kinds of popular database, such as Oracle, SQL Server, and MySQL etc. AnyDbTest can also be used to validate the replication, ETL, DTS & SSIS result. You can compare data of two SQL queries between two databases visually to see differences highlighted on the screen. Even you can get the one-stop service for ETL and validation via built-in data pump and record-set comparison functions. Features specific to AnyDbTest: *Writing test case with Xml, rather than Java/C++/C#/VB test case code.
- Publisher: AnyDbTest Technology
- Date: 25-09-2009
- Size: 2313 KB
- Platform: Windows Server, Windows Vista, WinOther
- CodeHouse.com
- License: Shareware

CodeHouse.com, home of the world's first 100% pure commercial DHTML menu, features original, free content for JavaScript programmers and webmasters, including interactive forums, favelets, online tools, scripts, articles, and more..
- Publisher: codehouse.com
- Date: 03-09-2011
- Platform: JavaScript, Scripts
- BlockMean
- License: Shareware

BLOCKMEAN - Fast mean of rectangular submatrices The mean of V*W elements along the 1st and 2nd dimension is calculated. This is no running mean filter: The sizes of the 1st and 2nd dimension are reduced by the factors V and W. I use this as cheap anti-aliasing of RGB images, therefore it is implemented for DOUBLE and UINT8 input. Y = BlockMean(X, V, W) Input: X: UINT8 or DOUBLE array of any size. V, W: 2 scalars as size of the window. Each element of the output is the mean over V*W neighbouring elements of the input. V and W are limited to 256 to limit memory usage. Output: Y: UINT8 or DOUBLE array, the 1st and 2nd dimensions are V and W times shorter: [FIX(X / V) x FIX(Y / W) x (further dims.
- Publisher: Jan Simon
- Date: 10-01-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- DGradient
- License: Shareware

Gradient along a specified dimension Y = DGradient(X, Dim, Spacing, Method) INPUT: X: Real DOUBLE array, any number of dimensions. Spacing: Scalar or vector of the length SIZE(X, Dim). Dim: Dimension to operate on. Optional, default: 1st non-singelton dimension. Method: String, order of the applied method for unevenly spaced X: '1stOrder', faster centered differences as in Matlab's GRADIENT. '2ndOrder', 2nd order accurate centered differences. On the edges forward and backward difference are used. Optional, default: '1stOrder'. OUTPUT: Y: Gradient of X, same size as X. There are a lot of other derivation tools in the FEX.
- Publisher: Jan Simon
- Date: 21-06-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- DateConvert
- License: Shareware

DateConvert: Simple but fast date conversion DateConvert converts the DATESTR(0) format to a date vector or serial date number and backwards. Matlab's DATENUM, DATEVEC and DATESTR accept a variety of inputs, but in consequence they are slow. If the input format is exactly known, the conversion can be much faster: DATENUM('17-Oct-2009 11:08:23'): 2.97 sec DateConvert('17-Oct-2009 11:08:23', 'number'): 0.039 sec => 1.3% (1000 loops, 1.5GHz Pentium-M, Matlab 7.7) DateConvert does *not* validate the input date as Matlab's date functions: DATEVEC('32-Feb-2008 25:62:63') replies [2008 3 4 2 2 7], DateConvert('32-Feb-2008 25:61:67' , 'vector') replies [2008 2 32 25 61 67] ! So DateConvert is nearly trivial, but optimized for speed.
- Publisher: Jan Simon
- Date: 11-06-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- strncmpr
- License: Shareware

Compare last N chars of strings or cell strings Input and output equal Matlab's STRNCMP/STRNCMPI, but the strings are compared from right to left. T = strncmpr(S1, S2, N) or T = strncmpir(S1, S2, N) INPUT: S1, S2: Strings or cell strings. N: Number of characters to compare. OUTPUT: T: Logical array, TRUE if the last N characters are equal, FALSE otherwise. For STRNCMPIR the case is ignored. Comparing just two strings in the backward direction can be done in Matlab with a fair efficiency. But for cell strings, this C-Mex is much faster than equivalent Matlab methods: e.g. 3% processing time for comparing a string with a {1 x 100} cell, 1% for {1 x 1000}.
- Publisher: Jan Simon
- Date: 26-02-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- assert_xpath
- License: Freeware
- Price: 0.00

unit-test HTML, XML, and javascript at very high precision.
- Publisher: Phlip
- Date: 04-04-2013
- Size: 20 KB
- Platform: Ruby, Scripts
- SabreDAV
- License: Shareware

SabreDAV is a WebDAV framework designed to help you implement its support for any PHP application. The framework is fully compliant with the WebDAV standard and features an easy to use API for integration.
You can use this tool for integrating the WebDAV protocol in the applications that improve the collaboration between users that need to edit documents stored online.
Feature list:
Fully WebDAV compliant
Supports Windows XP, Windows Vista, Mac OS/X, DavFSv2, Cadaver, Netdrive, Open Office, and probably more.
Passing all Litmus tests.
Supporting class 1, 2 and 3 Webdav servers.
- Publisher: Evert Pot
- Date:
- Size: 1843 KB
- Platform: Windows 7, WinOther, WinVista
Page: 1 |









