Fix linefeeds
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / SubjectLocality20Test.h
index 953c918..bca3f77 100644 (file)
@@ -1,69 +1,69 @@
-/*\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 SubjectLocality20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
-    XMLCh* expectedAddress; \r
-    XMLCh* expectedDNSName; \r
-\r
-public:\r
-    void setUp() {\r
-        expectedAddress = XMLString::transcode("10.1.2.3");; \r
-        expectedDNSName = XMLString::transcode("client.example.org"); \r
-\r
-        singleElementFile = data_path + "saml2/core/impl/SubjectLocality.xml";\r
-        singleElementOptionalAttributesFile = data_path + "saml2/core/impl/SubjectLocalityOptionalAttributes.xml";\r
-        SAMLObjectBaseTestCase::setUp();\r
-    }\r
-    \r
-    void tearDown() {\r
-        XMLString::release(&expectedAddress);\r
-        XMLString::release(&expectedDNSName);\r
-        SAMLObjectBaseTestCase::tearDown();\r
-    }\r
-\r
-    void testSingleElementUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));\r
-        SubjectLocality* sl = dynamic_cast<SubjectLocality*>(xo.get());\r
-        TS_ASSERT(sl!=NULL);\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));\r
-        SubjectLocality* sl = dynamic_cast<SubjectLocality*>(xo.get());\r
-        TS_ASSERT(sl!=NULL);\r
-        assertEquals("Address attribute", expectedAddress, sl->getAddress());\r
-        assertEquals("DNSName attribute", expectedDNSName, sl->getDNSName());\r
-    }\r
-\r
-    void testSingleElementMarshall() {\r
-        SubjectLocality* sl=SubjectLocalityBuilder::buildSubjectLocality();\r
-        assertEquals(expectedDOM, sl);\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesMarshall() {\r
-        SubjectLocality* sl=SubjectLocalityBuilder::buildSubjectLocality();\r
-        sl->setAddress(expectedAddress);\r
-        sl->setDNSName(expectedDNSName);\r
-        assertEquals(expectedOptionalAttributesDOM, sl);\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 SubjectLocality20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
+    XMLCh* expectedAddress; 
+    XMLCh* expectedDNSName; 
+
+public:
+    void setUp() {
+        expectedAddress = XMLString::transcode("10.1.2.3");; 
+        expectedDNSName = XMLString::transcode("client.example.org"); 
+
+        singleElementFile = data_path + "saml2/core/impl/SubjectLocality.xml";
+        singleElementOptionalAttributesFile = data_path + "saml2/core/impl/SubjectLocalityOptionalAttributes.xml";
+        SAMLObjectBaseTestCase::setUp();
+    }
+    
+    void tearDown() {
+        XMLString::release(&expectedAddress);
+        XMLString::release(&expectedDNSName);
+        SAMLObjectBaseTestCase::tearDown();
+    }
+
+    void testSingleElementUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
+        SubjectLocality* sl = dynamic_cast<SubjectLocality*>(xo.get());
+        TS_ASSERT(sl!=NULL);
+    }
+
+    void testSingleElementOptionalAttributesUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));
+        SubjectLocality* sl = dynamic_cast<SubjectLocality*>(xo.get());
+        TS_ASSERT(sl!=NULL);
+        assertEquals("Address attribute", expectedAddress, sl->getAddress());
+        assertEquals("DNSName attribute", expectedDNSName, sl->getDNSName());
+    }
+
+    void testSingleElementMarshall() {
+        SubjectLocality* sl=SubjectLocalityBuilder::buildSubjectLocality();
+        assertEquals(expectedDOM, sl);
+    }
+
+    void testSingleElementOptionalAttributesMarshall() {
+        SubjectLocality* sl=SubjectLocalityBuilder::buildSubjectLocality();
+        sl->setAddress(expectedAddress);
+        sl->setDNSName(expectedDNSName);
+        assertEquals(expectedOptionalAttributesDOM, sl);
+    }
+
+};