Download List

프로젝트 설명

Embedded Unit is unit testing framework for Embedded C System. It's design was copied from JUnit and CUnit and more, and then adapted somewhat for Embedded C System. Embedded Unit does not require std C libs. All objects are allocated to const area.

System Requirements

System requirement is not defined

Released at 2003-08-09 15:03
embunit 0.0.3 (2 files Hide)

Release Notes

config.hに"#define NO_STDIO_PRINTF"を追加しました。
"NO_STDIO_PRINTF"が定義されていない場合は標準ライブラリのprintf関数を使用してテスト結果を出力します。
標準ライブラリを使いたくない場合、"NO_STDIO_PRINTF"を定義して、stdimpl_puts関数を実装してください.
※stdimpl_puts関数は文字列の最後に改行を出力しない文字出力関数です。

Changelog

embUnit/config.h追加
embUnit/Tests/stdImplTest.c追加