43546e80ebd290da7afa63406cd283f9291371e1
[mdsal.git] / common / mdsal-common-api / src / test / java / org / opendaylight / mdsal / common / api / EmptyCommitInfoTest.java
1 /*
2  * Copyright (c) 2023 PANTHEON.tech, s.r.o. 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.mdsal.common.api;
9
10 import static org.junit.jupiter.api.Assertions.assertSame;
11 import static org.junit.jupiter.api.Assertions.assertTrue;
12
13 import com.google.common.util.concurrent.Futures;
14 import org.junit.jupiter.api.Test;
15
16 class EmptyCommitInfoTest {
17     @Test
18     void testFuture() throws Exception {
19         final var future = EmptyCommitInfo.FLUENT_INSTANCE;
20         assertTrue(future.isDone());
21         assertSame(EmptyCommitInfo.INSTANCE, Futures.getDone(future));
22     }
23 }