Segment type tests **/
| 20 | |
| 21 | /** Segment type tests **/ |
| 22 | TEST(CipEpath, GetSegmentTypePortSegment) { |
| 23 | const unsigned char message[] = {0x00}; |
| 24 | SegmentType segment_type = GetPathSegmentType(message); |
| 25 | CHECK_EQUAL(kSegmentTypePortSegment, segment_type); |
| 26 | } |
| 27 | |
| 28 | TEST(CipEpath, GetSegmentTypeLogicalSegment) { |
| 29 | const unsigned char message[] = {0x20}; |
nothing calls this directly
no test coverage detected