Rename StatementSource to StatementOrigin
[yangtools.git] / yang / yang-parser-spi / src / test / java / org / opendaylight / yangtools / yang / parser / spi / source / ImplicitStatementTest.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies 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.yangtools.yang.parser.spi.source;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.mockito.Mockito.doReturn;
12 import static org.mockito.Mockito.mock;
13
14 import org.junit.Test;
15 import org.opendaylight.yangtools.yang.model.api.meta.StatementOrigin;
16
17 public class ImplicitStatementTest {
18     @Test
19     public void testForwarding() {
20         final StatementSourceReference ref = mock(StatementSourceReference.class);
21         final ImplicitSubstatement stmt = ImplicitSubstatement.of(ref);
22         assertEquals(StatementOrigin.CONTEXT, stmt.statementOrigin());
23
24         doReturn("ref").when(ref).toString();
25         assertEquals("ref", stmt.toString());
26     }
27 }