summaryrefslogtreecommitdiff
path: root/tests/cxx/tree/naming/knr/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cxx/tree/naming/knr/driver.cxx')
-rw-r--r--tests/cxx/tree/naming/knr/driver.cxx154
1 files changed, 0 insertions, 154 deletions
diff --git a/tests/cxx/tree/naming/knr/driver.cxx b/tests/cxx/tree/naming/knr/driver.cxx
deleted file mode 100644
index 28e6562..0000000
--- a/tests/cxx/tree/naming/knr/driver.cxx
+++ /dev/null
@@ -1,154 +0,0 @@
-// file : tests/cxx/tree/naming/knr/driver.cxx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-// Test K&R naming style.
-//
-
-#include <sstream>
-#include <iostream>
-
-#include <xercesc/util/PlatformUtils.hpp>
-
-#include "test.hxx"
-
-using namespace std;
-using namespace test;
-
-int
-main ()
-{
- xercesc::XMLPlatformUtils::Initialize ();
-
- try
- {
- // Enum 'value' type.
- //
- {
- gender::value v;
- v = gender::female;
- XSD_UNUSED (v);
- }
-
- // Anonymous type.
- //
- {
- foo f ("a", "b");
-
- if (f.a () != "a" || f.b () != "b")
- return 1;
- }
-
- // Type name and accessors/modifiers.
- //
- {
- type t ("bar");
-
- // foo
- //
- {
- type::foo_type* p = 0;
- XSD_UNUSED (p);
-
- type::foo_optional o;
-
- if (t.foo ().present ())
- return 1;
-
- t.foo (o);
- }
-
- // bar
- //
- {
- type::bar_type* p = 0;
- XSD_UNUSED (p);
-
- if (t.bar () != "bar")
- return 1;
-
- t.bar ("barbar");
- }
-
- // baz
- //
- {
- type::baz_type* p = 0;
- XSD_UNUSED (p);
-
- type::baz_sequence s;
- type::baz_iterator i (s.begin ());
- type::baz_const_iterator ci (s.begin ());
- XSD_UNUSED (i);
- XSD_UNUSED (ci);
-
- if (t.baz () != s)
- return 1;
-
- t.baz (s);
- }
-
- // any
- //
- {
- type::any_sequence s (t.dom_document ());
- type::any_iterator i (s.begin ());
- type::any_const_iterator ci (s.begin ());
- XSD_UNUSED (i);
- XSD_UNUSED (ci);
-
- if (t.any () != s)
- return 1;
-
- t.any (s);
- }
-
- // foo
- //
- {
- type::fox_type x = type::fox_default_value ();
-
- if (t.fox () != x)
- return 1;
-
- t.fox ("fox");
- }
-
- // any_attribute
- //
- {
- type::any_attribute_set s (t.dom_document ());
- type::any_attribute_iterator i (s.begin ());
- type::any_attribute_const_iterator ci (s.begin ());
- XSD_UNUSED (i);
- XSD_UNUSED (ci);
-
- if (t.any_attribute () != s)
- return 1;
-
- t.any_attribute (s);
- }
- }
-
- // Parsing/serialization functions.
- //
- {
- istringstream is ("<t:root xmlns:t='test'>foo</t:root>");
- root (is, xml_schema::flags::dont_validate);
- }
-
- {
- ostringstream os;
- xml_schema::namespace_infomap m;
- m["t"].name = "test";
-
- root (os, "foo", m);
- }
- }
- catch (xml_schema::exception const& e)
- {
- cerr << e << endl;
- return 1;
- }
-
- xercesc::XMLPlatformUtils::Terminate ();
-}