622ee130de7b703da9b906eeff03c0314ebeb2d6
[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;
9
10 import org.junit.Assert;
11 import org.junit.Test;
12
13 public class PceComplianceCheckResultTest {
14
15     PceComplianceCheckResult pceComplianceCheckResult = new PceComplianceCheckResult(false, "message");
16
17     @Test
18     public void checkGetter() {
19         Assert.assertEquals(false, pceComplianceCheckResult.hasPassed());
20         Assert.assertNotNull(pceComplianceCheckResult.getMessage());
21     }
22 }