Fix linefeeds
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / StatusCode20Test.h
index 139d48b..7cfb59b 100644 (file)
@@ -1,66 +1,66 @@
-/*\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/Protocols.h>\r
-\r
-using namespace opensaml::saml2p;\r
-\r
-class StatusCode20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
-    XMLCh* Value;\r
-\r
-public:\r
-    void setUp() {\r
-        Value=XMLString::transcode("urn:string");\r
-        singleElementFile = data_path + "saml2/core/impl/StatusCode.xml";\r
-        childElementsFile  = data_path + "saml2/core/impl/StatusCodeChildElements.xml";    \r
-        SAMLObjectBaseTestCase::setUp();\r
-    }\r
-    \r
-    void tearDown() {\r
-        XMLString::release(&Value);\r
-        SAMLObjectBaseTestCase::tearDown();\r
-    }\r
-\r
-    void testSingleElementUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));\r
-        StatusCode* sc = dynamic_cast<StatusCode*>(xo.get());\r
-        TS_ASSERT(sc!=NULL);\r
-        assertEquals("Value attribute", Value, sc->getValue());\r
-        TSM_ASSERT("StatusCode child element", sc->getStatusCode()==NULL);\r
-    }\r
-\r
-    void testChildElementsUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));\r
-        StatusCode* sc = dynamic_cast<StatusCode*>(xo.get());\r
-        TS_ASSERT(sc!=NULL);\r
-        TSM_ASSERT("StatusCode child element", sc->getStatusCode()!=NULL);\r
-    }\r
-\r
-    void testSingleElementMarshall() {\r
-        StatusCode* sc=StatusCodeBuilder::buildStatusCode();\r
-        sc->setValue(Value);\r
-        assertEquals(expectedDOM, sc);\r
-    }\r
-\r
-    void testChildElementsMarshall() {\r
-        StatusCode* sc=StatusCodeBuilder::buildStatusCode();\r
-        StatusCode* scChild=StatusCodeBuilder::buildStatusCode();\r
-        sc->setStatusCode(scChild);\r
-        assertEquals(expectedChildElementsDOM, sc);\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/Protocols.h>
+
+using namespace opensaml::saml2p;
+
+class StatusCode20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
+    XMLCh* Value;
+
+public:
+    void setUp() {
+        Value=XMLString::transcode("urn:string");
+        singleElementFile = data_path + "saml2/core/impl/StatusCode.xml";
+        childElementsFile  = data_path + "saml2/core/impl/StatusCodeChildElements.xml";    
+        SAMLObjectBaseTestCase::setUp();
+    }
+    
+    void tearDown() {
+        XMLString::release(&Value);
+        SAMLObjectBaseTestCase::tearDown();
+    }
+
+    void testSingleElementUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
+        StatusCode* sc = dynamic_cast<StatusCode*>(xo.get());
+        TS_ASSERT(sc!=NULL);
+        assertEquals("Value attribute", Value, sc->getValue());
+        TSM_ASSERT("StatusCode child element", sc->getStatusCode()==NULL);
+    }
+
+    void testChildElementsUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));
+        StatusCode* sc = dynamic_cast<StatusCode*>(xo.get());
+        TS_ASSERT(sc!=NULL);
+        TSM_ASSERT("StatusCode child element", sc->getStatusCode()!=NULL);
+    }
+
+    void testSingleElementMarshall() {
+        StatusCode* sc=StatusCodeBuilder::buildStatusCode();
+        sc->setValue(Value);
+        assertEquals(expectedDOM, sc);
+    }
+
+    void testChildElementsMarshall() {
+        StatusCode* sc=StatusCodeBuilder::buildStatusCode();
+        StatusCode* scChild=StatusCodeBuilder::buildStatusCode();
+        sc->setStatusCode(scChild);
+        assertEquals(expectedChildElementsDOM, sc);
+    }
+
+};