Lines Matching refs:Short
530 * Feature: Short
535 * CaseDescription: Verify GetValue method of Short.
539 sptr<Short> shortObj = new Short(32767);
546 * Feature: Short
551 * CaseDescription: Verify Box and Unbox method of Short.
555 sptr<IShort> shortObj = Short::Box(32767);
556 EXPECT_EQ(Short::Unbox(shortObj), 32767);
560 * Feature: Short
565 * CaseDescription: Verify Parse method of Short.
569 sptr<IShort> shortObj = Short::Parse("32767");
570 EXPECT_EQ(Short::Unbox(shortObj), 32767);
574 * Feature: Short
579 * CaseDescription: Verify Equals method of Short.
583 sptr<Short> shortObj1 = new Short(32767);
584 sptr<Short> shortObj2 = new Short(-32768);
585 sptr<Short> shortObj3 = new Short(32767);
591 * Feature: Short
596 * CaseDescription: Verify ToString method of Short.
600 EXPECT_EQ(Object::ToString(Short::Box(32767)), "32767");