Lines Matching refs:Long
678 * Feature: Long
683 * CaseDescription: Verify GetValue method of Long.
687 sptr<Long> longObj = new Long(2147483647L);
694 * Feature: Long
699 * CaseDescription: Verify Box and Unbox method of Long.
703 sptr<ILong> longObj = Long::Box(2147483647L);
704 EXPECT_EQ(Long::Unbox(longObj), 2147483647L);
708 * Feature: Long
713 * CaseDescription: Verify Parse method of Long.
717 sptr<ILong> longObj = Long::Parse("-1");
718 EXPECT_EQ(Long::Unbox(longObj), -1);
722 * Feature: Long
727 * CaseDescription: Verify Equals method of Long.
731 sptr<Long> longObj1 = new Long(2147483647L);
732 sptr<Long> longObj2 = new Long(-2147483647L);
733 sptr<Long> longObj3 = new Long(2147483647L);
739 * Feature: Long
744 * CaseDescription: Verify ToString method of Long.
748 EXPECT_EQ(Object::ToString(Long::Box(-2147483647L)), "-9223372036854775807");