Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ public class AmlDeserializerTest {

private final AmlDeserializer deserializer = new AmlDeserializer();

AssetAdministrationShellEnvironment actual;
AssetAdministrationShellEnvironment expected;
private AssetAdministrationShellEnvironment actual;
private AssetAdministrationShellEnvironment expected;

@Before
public void init() throws FileNotFoundException, DeserializationException {
actual = deserializer.read(FullExample.FILE);
expected = AASFull.ENVIRONMENT;
expected = AASFull.createEnvironment();
}

@Test
Expand Down
80 changes: 46 additions & 34 deletions dataformat-aml/src/test/resources/test_demo_full_example.aml

Large diffs are not rendered by default.

3,476 changes: 1,761 additions & 1,715 deletions dataformat-core/src/test/java/io/adminshell/aas/v3/dataformat/core/AASFull.java

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
]
},
{
"idShort": "",
"idShort": "Test_AssetAdministrationShell_Mandatory",
"modelType": {
"name": "AssetAdministrationShell"
},
Expand Down
Loading