From c8f5f3a6d1213591feb45b33125e442abd29640a Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Mon, 14 May 2018 18:55:10 +0100 Subject: [PATCH] Add c++17 nested namespaces runtime test for Python --- .../python/cpp17_nested_namespaces_runme.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Examples/test-suite/python/cpp17_nested_namespaces_runme.py diff --git a/Examples/test-suite/python/cpp17_nested_namespaces_runme.py b/Examples/test-suite/python/cpp17_nested_namespaces_runme.py new file mode 100644 index 000000000..562216625 --- /dev/null +++ b/Examples/test-suite/python/cpp17_nested_namespaces_runme.py @@ -0,0 +1,18 @@ +from cpp17_nested_namespaces import * + +A1Struct().A1Method() +B1Struct().B1Method() +C1Struct().C1Method() +createA1Struct().A1Method() +createB1Struct().B1Method() +createC1Struct().C1Method() + +B2Struct().B2Method() +C2Struct().C2Method() +createB2Struct().B2Method() +createC2Struct().C2Method() + +B3Struct().B3Method() +C3Struct().C3Method() +createB3Struct().B3Method() +createC3Struct().C3Method()