Fix checkstyle violations in sal-binding-broker
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / test / java / org / opendaylight / controller / sal / binding / test / AugmentationVerifier.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, 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.controller.sal.binding.test;
9
10 import static org.junit.Assert.assertNotNull;
11
12 import org.opendaylight.yangtools.yang.binding.Augmentable;
13 import org.opendaylight.yangtools.yang.binding.Augmentation;
14
15 public class AugmentationVerifier<T extends Augmentable<T>> {
16
17     private final T object;
18
19     public AugmentationVerifier(T objectToVerify) {
20         this.object = objectToVerify;
21     }
22
23     public AugmentationVerifier<T> assertHasAugmentation(Class<? extends Augmentation<T>> augmentation) {
24         assertHasAugmentation(object, augmentation);
25         return this;
26     }
27
28     public static <T extends Augmentable<T>> void assertHasAugmentation(T object,
29             Class<? extends Augmentation<T>> augmentation) {
30         assertNotNull(object);
31         assertNotNull("Augmentation " + augmentation.getSimpleName() + " is not present.",
32                 object.getAugmentation(augmentation));
33     }
34
35     public static <T extends Augmentable<T>> AugmentationVerifier<T> from(T obj) {
36         return new AugmentationVerifier<>(obj);
37     }
38 }