Searched refs:AddrTypeTestCase (Results 1 – 1 of 1) sorted by relevance
/aosp12/packages/modules/Connectivity/tests/unit/java/android/net/ |
H A D | MacAddressTest.java | 45 static class AddrTypeTestCase { class in MacAddressTest 49 static AddrTypeTestCase of(int expectedType, int... addr) { in of() 50 AddrTypeTestCase t = new AddrTypeTestCase(); in of() 59 AddrTypeTestCase[] testcases = { in testMacAddrTypes() 60 AddrTypeTestCase.of(MacAddress.TYPE_UNKNOWN), in testMacAddrTypes() 61 AddrTypeTestCase.of(MacAddress.TYPE_UNKNOWN, 0), in testMacAddrTypes() 62 AddrTypeTestCase.of(MacAddress.TYPE_UNKNOWN, 1, 2, 3, 4, 5), in testMacAddrTypes() 63 AddrTypeTestCase.of(MacAddress.TYPE_UNKNOWN, 1, 2, 3, 4, 5, 6, 7), in testMacAddrTypes() 66 AddrTypeTestCase.of(MacAddress.TYPE_MULTICAST, 1, 2, 3, 4, 5, 6), in testMacAddrTypes() 67 AddrTypeTestCase.of(MacAddress.TYPE_MULTICAST, 11, 22, 33, 44, 55, 66), in testMacAddrTypes() [all …]
|