tenfourfox/xpcom/tests/gtest/TestXPIDLString.cpp

19 lines
379 B
C++
Raw Normal View History

2017-04-19 07:56:45 +00:00
#include "nsString.h"
#include "nsReadableUtils.h"
#include "nsXPIDLString.h"
#include "gtest/gtest.h"
static void
nsXPIDLStringTest_Value(char16_t** aResult)
{
*aResult = ToNewUnicode(NS_LITERAL_STRING("Hello, World"));
}
TEST(XPIDLString, Main)
{
nsXPIDLString s1;
nsXPIDLStringTest_Value(getter_Copies(s1));
EXPECT_TRUE(s1.EqualsLiteral("Hello, World"));
}