blob: 22253f52e870a0910f718bc1a419916895037700 [file] [log] [blame]
Scott Bakerf8f97fa2019-09-30 13:07:01 -07001/*
2 * Copyright 2019-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package adaptercore
17
18import (
19 "github.com/stretchr/testify/assert"
20 "testing"
21)
22
23func TestMacAddressToUint32Array(t *testing.T) {
24 macArray := macAddressToUint32Array("12:34:56:78:90:AB")
25 assert.Equal(t, []uint32{0x12, 0x34, 0x56, 0x78, 0x90, 0xAB}, macArray)
26}