本文整理汇总了C++中ItemFactory::createGYear方法的典型用法代码示例。如果您正苦于以下问题:C++ ItemFactory::createGYear方法的具体用法?C++ ItemFactory::createGYear怎么用?C++ ItemFactory::createGYear使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ItemFactory
的用法示例。
在下文中一共展示了ItemFactory::createGYear方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: testMultipleFactoryInitilizations
//.........这里部分代码省略.........
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
lItem = lFactory->createDateTime(1999, 05, 31, 01, 02, 3.04, -3600);
UNIT_ASSERT ( checkType(lItem.getType(), "dateTime") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "1999-05-31T01:02:03.04-01:00" );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
/** Time*/
lItem = lFactory->createTime("08:00:00+09:00");
UNIT_ASSERT ( checkType(lItem.getType(), "time") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "08:00:00+09:00" );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
lItem = lFactory->createTime(8,9,10.123);
UNIT_ASSERT ( checkType(lItem.getType(), "time") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "08:09:10.123" );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
lItem = lFactory->createTime(17,0,0,-21600);
UNIT_ASSERT ( checkType(lItem.getType(), "time") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "17:00:00-06:00" );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
/** GYearMonth*/
lItem = lFactory->createGYearMonth("1976-02");
UNIT_ASSERT ( checkType(lItem.getType(), "gYearMonth") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "1976-02" );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
lItem = lFactory->createGYearMonth(1976,02);
UNIT_ASSERT ( checkType(lItem.getType(), "gYearMonth") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "1976-02" );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
/** GYear*/
lItem = lFactory->createGYear("1977");
UNIT_ASSERT ( checkType(lItem.getType(), "gYear") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "1977" );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
lItem = lFactory->createGYear(1977);
UNIT_ASSERT ( checkType(lItem.getType(), "gYear") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "1977" );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
/** GMonth*/
lItem = lFactory->createGMonth("--12Z");
UNIT_ASSERT ( checkType(lItem.getType(), "gMonth") );
UNIT_ASSERT ( lItem.isAtomic() );