Fix linefeeds
[shibboleth/cpp-opensaml.git] / samltest / saml1 / core / impl / ActionTest.h
index 643adf2..f484f13 100644 (file)
@@ -1,67 +1,67 @@
-/*\r
- *  Copyright 2001-2006 Internet2\r
- * \r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *     http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-\r
-#include "internal.h"\r
-#include <saml/saml1/core/Assertions.h>\r
-\r
-using namespace opensaml::saml1;\r
-\r
-class ActionTest : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
-    XMLCh* expectedContents;\r
-    XMLCh* expectedNamespace;\r
-\r
-public:\r
-    void setUp() {\r
-        singleElementFile = data_path + "saml1/core/impl/singleAction.xml";\r
-        singleElementOptionalAttributesFile  = data_path + "saml1/core/impl/singleActionAttributes.xml";    \r
-        expectedContents = XMLString::transcode("Action Contents");\r
-        expectedNamespace = XMLString::transcode("namespace");\r
-        SAMLObjectBaseTestCase::setUp();\r
-    }\r
-    \r
-    void tearDown() {\r
-        XMLString::release(&expectedContents);\r
-        XMLString::release(&expectedNamespace);\r
-        SAMLObjectBaseTestCase::tearDown();\r
-    }\r
-\r
-    void testSingleElementUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));\r
-        Action* action = dynamic_cast<Action*>(xo.get());\r
-        TS_ASSERT(action!=NULL);\r
-        TSM_ASSERT("namespace attribute present", action->getNamespace()==NULL);\r
-        TSM_ASSERT("Contents present", action->getAction()==NULL);\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));\r
-        Action* action = dynamic_cast<Action*>(xo.get());\r
-        assertEquals("namespace attribute ", expectedNamespace, action->getNamespace());\r
-        assertEquals("Contents ", expectedContents, action->getAction());\r
-    }\r
-\r
-    void testSingleElementMarshall() {\r
-        assertEquals(expectedDOM, ActionBuilder::buildAction());\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesMarshall() {\r
-        Action* action=ActionBuilder::buildAction();\r
-        action->setNamespace(expectedNamespace);\r
-        action->setAction(expectedContents);\r
-        assertEquals(expectedOptionalAttributesDOM, action);\r
-    }\r
-\r
-};\r
+/*
+ *  Copyright 2001-2006 Internet2
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "internal.h"
+#include <saml/saml1/core/Assertions.h>
+
+using namespace opensaml::saml1;
+
+class ActionTest : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
+    XMLCh* expectedContents;
+    XMLCh* expectedNamespace;
+
+public:
+    void setUp() {
+        singleElementFile = data_path + "saml1/core/impl/singleAction.xml";
+        singleElementOptionalAttributesFile  = data_path + "saml1/core/impl/singleActionAttributes.xml";    
+        expectedContents = XMLString::transcode("Action Contents");
+        expectedNamespace = XMLString::transcode("namespace");
+        SAMLObjectBaseTestCase::setUp();
+    }
+    
+    void tearDown() {
+        XMLString::release(&expectedContents);
+        XMLString::release(&expectedNamespace);
+        SAMLObjectBaseTestCase::tearDown();
+    }
+
+    void testSingleElementUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
+        Action* action = dynamic_cast<Action*>(xo.get());
+        TS_ASSERT(action!=NULL);
+        TSM_ASSERT("namespace attribute present", action->getNamespace()==NULL);
+        TSM_ASSERT("Contents present", action->getAction()==NULL);
+    }
+
+    void testSingleElementOptionalAttributesUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));
+        Action* action = dynamic_cast<Action*>(xo.get());
+        assertEquals("namespace attribute ", expectedNamespace, action->getNamespace());
+        assertEquals("Contents ", expectedContents, action->getAction());
+    }
+
+    void testSingleElementMarshall() {
+        assertEquals(expectedDOM, ActionBuilder::buildAction());
+    }
+
+    void testSingleElementOptionalAttributesMarshall() {
+        Action* action=ActionBuilder::buildAction();
+        action->setNamespace(expectedNamespace);
+        action->setAction(expectedContents);
+        assertEquals(expectedOptionalAttributesDOM, action);
+    }
+
+};