Bug 5947: additional tests for binding-dom-adapter
[mdsal.git] / binding / mdsal-binding-dom-adapter / src / test / java / org / opendaylight / mdsal / binding / dom / adapter / FutureSchemaTest.java
diff --git a/binding/mdsal-binding-dom-adapter/src/test/java/org/opendaylight/mdsal/binding/dom/adapter/FutureSchemaTest.java b/binding/mdsal-binding-dom-adapter/src/test/java/org/opendaylight/mdsal/binding/dom/adapter/FutureSchemaTest.java
new file mode 100644 (file)
index 0000000..d688599
--- /dev/null
@@ -0,0 +1,31 @@
+/*
+ * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.mdsal.binding.dom.adapter;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+
+import com.google.common.collect.ImmutableSet;
+import java.net.URI;
+import java.util.Date;
+import java.util.concurrent.TimeUnit;
+import org.junit.Test;
+
+public class FutureSchemaTest {
+
+    @Test
+    public void basicTest() throws Exception {
+        final FutureSchema futureSchema = new FutureSchema(0, TimeUnit.MICROSECONDS);
+        assertNotNull(futureSchema);
+        assertFalse(futureSchema.waitForSchema(new URI("test"), new Date(0)));
+        assertFalse(futureSchema.waitForSchema(ImmutableSet.of()));
+        assertEquals(0, futureSchema.getDuration());
+        assertEquals(TimeUnit.MICROSECONDS, futureSchema.getUnit());
+    }
+}
\ No newline at end of file