mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-18 04:53:06 +01:00
Added HandleHashMap.
This commit is contained in:
32
tests/string_test.cpp
Normal file
32
tests/string_test.cpp
Normal file
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Copyright 2010-2016 Branimir Karadzic. All rights reserved.
|
||||
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
|
||||
*/
|
||||
|
||||
#include "test.h"
|
||||
#include <bx/string.h>
|
||||
#include <bx/crtimpl.h>
|
||||
#include <bx/handlealloc.h>
|
||||
|
||||
bx::AllocatorI* g_allocator;
|
||||
|
||||
TEST_CASE("StringView", "")
|
||||
{
|
||||
bx::StringView sv("test");
|
||||
REQUIRE(4 == sv.getLength() );
|
||||
|
||||
bx::CrtAllocator crt;
|
||||
g_allocator = &crt;
|
||||
|
||||
typedef bx::StringT<&g_allocator> String;
|
||||
|
||||
String st(sv);
|
||||
REQUIRE(4 == st.getLength() );
|
||||
|
||||
st.clear();
|
||||
REQUIRE(0 == st.getLength() );
|
||||
REQUIRE(4 == sv.getLength() );
|
||||
|
||||
sv.clear();
|
||||
REQUIRE(0 == sv.getLength() );
|
||||
}
|
||||
Reference in New Issue
Block a user