adding some pce unit tests and remove ignore from olm class
[transportpce.git] / pce / src / test / java / org / opendaylight / transportpce / pce / PceComplianceCheckResultTest.java
1 /*
2  * Copyright © 2020 Orange Labs, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.transportpce.pce.utils;
9
10 import org.junit.Assert;
11 import org.junit.Test;
12 import org.opendaylight.transportpce.pce.PceComplianceCheckResult;
13
14 public class PceComplianceCheckResultTest {
15
16     PceComplianceCheckResult pceComplianceCheckResult = new PceComplianceCheckResult(false, "message");
17
18     @Test
19     public void checkGetter() {
20         Assert.assertEquals(false, pceComplianceCheckResult.hasPassed());
21         Assert.assertNotNull(pceComplianceCheckResult.getMessage());
22     }
23 }