bsl_test_fun.h 828 字节
Newer Older
W
wangguibao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
/***************************************************************************
 * 
 * Copyright (c) 2008 Baidu.com, Inc. All Rights Reserved
 * $Id: bsl_test_fun.h,v 1.1 2008/09/03 06:47:49 xiaowei Exp $ 
 * 
 **************************************************************************/
 
 
 
/**
 * @file bsl_test_fun.cpp
 * @author xiaowei(com@baidu.com)
 * @date 2008/08/14 17:44:12
 * @version $Revision: 1.1 $ 
 * @brief 
 *  
 **/


 #ifndef  __BSL_TEST_FUN_
 #define  __BSL_TEST_FUN_
 #include <cxxtest/TestSuite.h>


class bsl_test_fun : public CxxTest::TestSuite
{
	public:
		void test_normal_1(void) 
		{   
			int val = 0;
			TSM_ASSERT(val, val == 0);
		}   
		void test_normal_2(void) 
		{   
			int val = 0;
			TSM_ASSERT(val, val != 0);
		}   
};


#endif
















/* vim: set ts=4 sw=4 sts=4 tw=100 noet: */