1 /*--------------------------------------------------------------------------
2   Project:  HorizonSDK
3   File:     Test.h
4 
5   Copyright 2009 Nintendo.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain
8   proprietary information of Nintendo of America Inc. and/or Nintendo
9   Company Ltd., and are protected by Federal copyright law.  They may
10   not be disclosed to third parties or copied or duplicated in any form,
11   in whole or in part, without the prior written consent of Nintendo.
12 
13   $Date:: 2010-04-07#$
14   $Rev: 13736 $
15   $Author: hatamoto_minoru $
16  *-------------------------------------------------------------------------*/
17 
18 #include "stdafx.h"
19 
20 #ifndef NN_RDT_TEST_H_
21 #define NN_RDT_TEST_H_
22 
23 #ifdef _WIN32
24 #include <CUnit.h>
25 #include <Basic.h>
26 #else
27 #define CU_ASSERT(exp)
28 // ↑ TORIAEZU
29 // 本当は以下のようにincludeしたい。
30 // #include <nn/test/compatible/test_CunitAssert.h>
31 #endif
32 
33 namespace nn { namespace rdt { namespace CTR {
34 
35 /*!
36     @brief これはプラットホームの違いを吸収し、単体テスト・自動テストを記述するために用意したヘッダです。
37 */
38 
39 }}} // namespace nn::rdt::CTR
40 
41 #endif  // end of NN_RDT_TEST_H_
42