| 150 | } |
| 151 | |
| 152 | TEST(Socket, BitDifference_Difference) |
| 153 | { |
| 154 | dmSocket::Address instance1; |
| 155 | dmSocket::Address instance2; |
| 156 | |
| 157 | instance1.m_address[3] = 0x4e; |
| 158 | instance2.m_address[3] = 0xe6; |
| 159 | |
| 160 | ASSERT_EQ(3u, dmSocket::BitDifference(instance1, instance2)); |
| 161 | } |
| 162 | |
| 163 | TEST(Socket, BitDifference_Equal) |
| 164 | { |
nothing calls this directly
no test coverage detected