本文整理汇总了C++中ItemFactory::createDate方法的典型用法代码示例。如果您正苦于以下问题:C++ ItemFactory::createDate方法的具体用法?C++ ItemFactory::createDate怎么用?C++ ItemFactory::createDate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ItemFactory
的用法示例。
在下文中一共展示了ItemFactory::createDate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: testMultipleFactoryInitilizations
//.........这里部分代码省略.........
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
/* Unsigned Short */
lItem = lFactory->createUnsignedShort(10);
UNIT_ASSERT ( checkType(lItem.getType(), "unsignedShort") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "10" );
UNIT_ASSERT ( lItem.getEBV().getBooleanValue() );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
/* Unsigned Long */
lItem = lFactory->createUnsignedLong(10);
UNIT_ASSERT ( checkType(lItem.getType(), "unsignedLong") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "10" );
UNIT_ASSERT ( lItem.getEBV().getBooleanValue() );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
/* Unsigned Int */
lItem = lFactory->createUnsignedInt(10);
UNIT_ASSERT ( checkType(lItem.getType(), "unsignedInt") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "10" );
UNIT_ASSERT ( lItem.getUnsignedIntValue() == 10 );
UNIT_ASSERT ( lItem.getEBV().getBooleanValue() );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
/** Date*/
lItem = lFactory->createDate("1999-05-31");
UNIT_ASSERT ( checkType(lItem.getType(), "date") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "1999-05-31" );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
lItem = lFactory->createDate(1999,05,31);
UNIT_ASSERT ( checkType(lItem.getType(), "date") );
UNIT_ASSERT ( lItem.isAtomic() );
UNIT_ASSERT ( lItem.getStringValue() == "1999-05-31" );
UNIT_ASSERT ( !lItem.getAtomizationValue().isNull() );
CHECK_NOT_IMPLEMENTED(lItem, getBooleanValue() );
/** DateTime*/
lItem = lFactory->createDateTime("1999-05-31T01:02:03.04-01:00");
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() );
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() );