static void _check_time_wrap(void * refState, unsigned int param)
{
	_check_expired_no(refState, param);
	REQUIRE(systemTime < 10);
}
static void _check_time_wrap(void * refState)
{
	_check_expired_no(refState);
	REQUIRE(systemTime < 10);
}
static void _start_to_20(void * refState, unsigned int param)
{
	to.start(20);
	_check_expired_no(refState, param);
}
static void _start_to_20(void * refState)
{
	to.start(20);
	_check_expired_no(refState);
}