Bug 3899: Milestone: Increase test coverage for YangTools (80%). 54/25354/6
authorIgor Foltin <ifoltin@cisco.com>
Tue, 29 Sep 2015 08:49:25 +0000 (10:49 +0200)
committerTony Tkacik <ttkacik@cisco.com>
Wed, 14 Oct 2015 11:13:41 +0000 (11:13 +0000)
commit8e2f56ae466f158732daa196d38fe1c6c26d0fa0
tree13fa800185d54d3880b221c5d68f7ea343580d42
parent92c772cd877e5c2b6ee17af49dc6978bdd9a69d0
Bug 3899: Milestone: Increase test coverage for YangTools (80%).

- fixed wildcard imports and missing headers in test classes

Change-Id: Iaf12398e8190089daff248533bc4af1cc82a829e
Signed-off-by: Igor Foltin <igor.foltin@pantheon.sk>
Signed-off-by: Igor Foltin <ifoltin@cisco.com>
31 files changed:
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/test/ChoiceStmtTest.java [new file with mode: 0644]
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/test/ExtensionStmtTest.java [new file with mode: 0644]
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/test/GroupingAndUsesStmtTest.java [new file with mode: 0644]
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/test/IdentityStmtTest.java [new file with mode: 0644]
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/test/ImportRevisionsTest.java [new file with mode: 0644]
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/test/IncludedStmtsTest.java [new file with mode: 0644]
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/test/ListTest.java [new file with mode: 0644]
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/test/MustAndWhenStmtTest.java [new file with mode: 0644]
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/test/NotificationStmtTest.java [new file with mode: 0644]
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/test/RpcStmtTest.java [new file with mode: 0644]
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/test/TypedefSubStmtsTest.java [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/identity/duplicate-identity-test.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/identity/illegal-chained-identity-test.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/identity/legal-chained-identity-test.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/import-revision-date-test/imported-module-with-equal-revision-date.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/import-revision-date-test/imported-module-with-no-revision-date.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/import-revision-date-test/imported-module-with-revision-date.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/import-revision-date-test/imported-module-with-unequal-revision-date.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/import-revision-date-test/imported-module-without-revision-date.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/import-revision-date-test/root-with-1970-revision-date.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/import-revision-date-test/root-with-equal-revision-date.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/import-revision-date-test/root-with-no-revision-date.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/import-revision-date-test/root-with-revision-date.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/import-revision-date-test/root-with-unequal-revision-date.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/import-revision-date-test/root-without-revision-date.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/included-statements-test/child-module.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/included-statements-test/root-module.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/list-test/list-test.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/must-when-stmt-test/must-test.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/must-when-stmt-test/when-test.yang [new file with mode: 0644]
yang/yang-parser-impl/src/test/resources/typedef-substmts-test/typedef-substmts-test.yang [new file with mode: 0644]