diff options
author | TamasBakai <tamas.bakai@est.tech> | 2019-03-19 09:56:28 +0000 |
---|---|---|
committer | TamasBakai <tamas.bakai@est.tech> | 2019-03-19 09:56:28 +0000 |
commit | 114c21c9ff09fd80851e8419b575ea75f5e0a206 (patch) | |
tree | 7a573cda93d7acff46a129fb0e6e24863e274d67 /test/mocks/mass-pnf-sim/pnf-sim-lightweight/netconf | |
parent | db4bd69a91545c22580f3c9c57237df82cf1b80e (diff) |
ROP file processing in mass-pnf-simulator
Change-Id: I66203ff66e9d91865f8eee06bef01e55bcd6c39c
Issue-ID: DCAEGEN2-1225
Signed-off-by: TamasBakai <tamas.bakai@est.tech>
Diffstat (limited to 'test/mocks/mass-pnf-sim/pnf-sim-lightweight/netconf')
-rw-r--r-- | test/mocks/mass-pnf-sim/pnf-sim-lightweight/netconf/pnf-simulator.data.xml | 4 | ||||
-rw-r--r-- | test/mocks/mass-pnf-sim/pnf-sim-lightweight/netconf/pnf-simulator.yang | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/test/mocks/mass-pnf-sim/pnf-sim-lightweight/netconf/pnf-simulator.data.xml b/test/mocks/mass-pnf-sim/pnf-sim-lightweight/netconf/pnf-simulator.data.xml new file mode 100644 index 000000000..9d648bba7 --- /dev/null +++ b/test/mocks/mass-pnf-sim/pnf-sim-lightweight/netconf/pnf-simulator.data.xml @@ -0,0 +1,4 @@ +<config xmlns="http://nokia.com/pnf-simulator"> + <itemValue1>42</itemValue1> + <itemValue2>35</itemValue2> +</config> diff --git a/test/mocks/mass-pnf-sim/pnf-sim-lightweight/netconf/pnf-simulator.yang b/test/mocks/mass-pnf-sim/pnf-sim-lightweight/netconf/pnf-simulator.yang new file mode 100644 index 000000000..d7fc2f26e --- /dev/null +++ b/test/mocks/mass-pnf-sim/pnf-sim-lightweight/netconf/pnf-simulator.yang @@ -0,0 +1,9 @@ +module pnf-simulator { + namespace "http://nokia.com/pnf-simulator"; + prefix config; + container config { + config true; + leaf itemValue1 {type uint32;} + leaf itemValue2 {type uint32;} + } +} |