blob: c35878716689276c0922f0de3215ff4bb57ea7c2 [file] [log] [blame]
Jordan Halterman948d6592017-04-20 17:18:24 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Jordan Halterman948d6592017-04-20 17:18:24 -07003 *
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 org.onosproject.store.service;
17
18import org.junit.Test;
19
20import static junit.framework.TestCase.assertFalse;
21import static junit.framework.TestCase.assertTrue;
22
23/**
24 * Version test.
25 */
26public class VersionTest {
27
28 @Test
29 public void testVersion() {
30 Version version1 = new Version(1);
31 Version version2 = new Version(1);
32 assertTrue(version1.equals(version2));
33 assertTrue(version1.hashCode() == version2.hashCode());
34 assertTrue(version1.value() == version2.value());
35
36 Version version3 = new Version(2);
37 assertFalse(version1.equals(version3));
38 assertFalse(version1.hashCode() == version3.hashCode());
39 assertFalse(version1.value() == version3.value());
40 }
41
42}