Fix linefeeds
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / Action20Test.h
index 910a990..c40d980 100644 (file)
@@ -1,61 +1,61 @@
-/*\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/saml2/core/Assertions.h>\r
-#include <saml/util/SAMLConstants.h>\r
-\r
-using namespace opensaml::saml2;\r
-\r
-class Action20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
-    XMLCh* expectedNamespace; \r
-    XMLCh* expectedContent; \r
-\r
-public:\r
-    void setUp() {\r
-        expectedNamespace = XMLString::transcode("urn:string:namespace"); \r
-        expectedContent = XMLString::transcode("someActionName"); \r
-\r
-        singleElementFile = data_path + "saml2/core/impl/Action.xml";\r
-        SAMLObjectBaseTestCase::setUp();\r
-    }\r
-    \r
-    void tearDown() {\r
-        XMLString::release(&expectedNamespace);\r
-        XMLString::release(&expectedContent);\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
-\r
-        assertEquals("Element content", expectedContent, action->getAction());\r
-        assertEquals("Namespace attribute", expectedNamespace, action->getNamespace());\r
-    }\r
-\r
-\r
-    void testSingleElementMarshall() {\r
-        Action* action = ActionBuilder::buildAction();\r
-        TS_ASSERT(action!=NULL);\r
-\r
-        action->setAction(expectedContent);\r
-        action->setNamespace(expectedNamespace);\r
-        assertEquals(expectedDOM, 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/saml2/core/Assertions.h>
+#include <saml/util/SAMLConstants.h>
+
+using namespace opensaml::saml2;
+
+class Action20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
+    XMLCh* expectedNamespace; 
+    XMLCh* expectedContent; 
+
+public:
+    void setUp() {
+        expectedNamespace = XMLString::transcode("urn:string:namespace"); 
+        expectedContent = XMLString::transcode("someActionName"); 
+
+        singleElementFile = data_path + "saml2/core/impl/Action.xml";
+        SAMLObjectBaseTestCase::setUp();
+    }
+    
+    void tearDown() {
+        XMLString::release(&expectedNamespace);
+        XMLString::release(&expectedContent);
+        SAMLObjectBaseTestCase::tearDown();
+    }
+
+    void testSingleElementUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
+        Action* action = dynamic_cast<Action*>(xo.get());
+        TS_ASSERT(action!=NULL);
+
+        assertEquals("Element content", expectedContent, action->getAction());
+        assertEquals("Namespace attribute", expectedNamespace, action->getNamespace());
+    }
+
+
+    void testSingleElementMarshall() {
+        Action* action = ActionBuilder::buildAction();
+        TS_ASSERT(action!=NULL);
+
+        action->setAction(expectedContent);
+        action->setNamespace(expectedNamespace);
+        assertEquals(expectedDOM, action);
+    }
+
+};