0c6e44d5782a6c1d6488d7466509bb51b3d7f64b
[transportpce.git] / servicehandler / src / test / java / org / opendaylight / transportpce / servicehandler / validation / checks / ComplianceCheckResultTest.java
1 /*
2  * Copyright © 2018 Orange, 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.servicehandler.validation.checks;
9
10 import org.junit.Assert;
11 import org.junit.Test;
12
13 public class ComplianceCheckResultTest {
14
15     @Test
16     public void constructComplianceCheckResult() {
17         ComplianceCheckResult checkResult = new ComplianceCheckResult(true);
18         Assert.assertEquals(true, checkResult.hasPassed());
19
20         checkResult = new ComplianceCheckResult(false);
21         Assert.assertEquals(false, checkResult.hasPassed());
22     }
23 }