⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 heapwalk_sequence_unittest_.h

📁 用STL的方式封装了WindowsAPI、COM调用、ACE、ATL、MFC、WTL等多种组件
💻 H
字号:

// Updated: 10th June 2006

#if !defined(WINSTL_INCL_WINSTL_MEMORY_HPP_HEAPWALK_SEQUENCE)
# error This file cannot be directly included, and should only be included within winstl/memory/heapwalk_sequence.hpp
#endif /* !WINSTL_INCL_WINSTL_MEMORY_HPP_HEAPWALK_SEQUENCE */

#if !defined(STLSOFT_UNITTEST)
# error This file cannot be included when not unit-testing STLSoft
#endif /* !STLSOFT_UNITTEST */

namespace unittest
{
	namespace
	{
		ss_bool_t test_winstl_memory_heapwalk_sequence(unittest_reporter *r)
		{
			using stlsoft::unittest::unittest_initialiser;

			ss_bool_t				bSuccess	=	true;

			unittest_initialiser	init(r, "WinSTL", "memory/heapwalk_sequence", __FILE__);

			{
				heapwalk_sequence	blocks;
				const size_t		n1	=	static_cast<size_t>(winstl_ns_qual_std(distance)(blocks.begin(), blocks.end()));
				size_t				n2	=	0;

				{ for(winstl::heapwalk_sequence::const_iterator b = blocks.begin(); b != blocks.end(); ++b, ++n2)
				{}}

				// NOTE: Can't test these against each other, as something else in
				// the process might (de-)allocate a block.
				STLSOFT_SUPPRESS_UNUSED(n1);
				STLSOFT_SUPPRESS_UNUSED(n2);
			}

			{
				HANDLE	hHeap	=	::HeapCreate(0, 0, 0);

				::HeapAlloc(hHeap, 0, 100);
				::HeapAlloc(hHeap, 0, 100);

				heapwalk_sequence	blocks(hHeap);
				const size_t		n1	=	static_cast<size_t>(winstl_ns_qual_std(distance)(blocks.begin(), blocks.end()));
				size_t				n2	=	0;

				{ for(winstl::heapwalk_sequence::const_iterator b = blocks.begin(); b != blocks.end(); ++b, ++n2)
				{}}

				if(n1 != n2)
				{
					r->report("repeated iteration returned inconsistent value", __LINE__);
					bSuccess = false;
				}

				::HeapDestroy(hHeap);
			}

			return bSuccess;
		}

		unittest_registrar	  unittest_winstl_memory_heapwalk_sequence(test_winstl_memory_heapwalk_sequence);
	} // anonymous namespace

} // namespace unittest

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -