blob: 61c9fcc390a26db75e3a6affc2ff0d576614e324 [file] [log] [blame]
Ray Milkeyf0c47612017-09-28 11:29:38 -07001/*
2 * Copyright 2017-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 */
16
17package org.onlab.packet;
18
19import org.junit.Test;
20
21import static org.hamcrest.MatcherAssert.assertThat;
22import static org.hamcrest.Matchers.equalTo;
23
24public class BasePacketTest {
25
26 @Test
27 public void testClone() {
28 Ethernet p1 = new Ethernet();
29 p1.sourceMACAddress = MacAddress.ONOS;
30 p1.destinationMACAddress = MacAddress.ZERO;
31 p1.payload = new Data("xyzzy".getBytes());
32 BasePacket copy1 = (BasePacket) p1.clone();
33 assertThat(p1, equalTo(copy1));
34 }
35
36}