Fix linefeeds
[shibboleth/cpp-opensaml.git] / samltest / saml1 / core / impl / AudienceTest.h
index 1a95e35..ca58c18 100644 (file)
@@ -1,60 +1,60 @@
-/*\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 AudienceTest : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
-    XMLCh* expectedUri;\r
-\r
-public:\r
-    void setUp() {\r
-        expectedUri=XMLString::transcode("urn:oasis:names:tc:SAML:1.0:assertion");\r
-        singleElementFile = data_path + "saml1/core/impl/singleAudience.xml";\r
-        singleElementOptionalAttributesFile = data_path + "saml1/core/impl/singleAudienceAttributes.xml";\r
-        SAMLObjectBaseTestCase::setUp();\r
-    }\r
-    \r
-    void tearDown() {\r
-        XMLString::release(&expectedUri);\r
-        SAMLObjectBaseTestCase::tearDown();\r
-    }\r
-\r
-    void testSingleElementUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));\r
-        Audience& a = dynamic_cast<Audience&>(*xo.get());\r
-        TSM_ASSERT("Uri is non-null", a.getAudienceURI()==NULL);\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));\r
-        Audience& a = dynamic_cast<Audience&>(*xo.get());\r
-        assertEquals("Uri", expectedUri, a.getAudienceURI());\r
-    }\r
-\r
-    void testSingleElementMarshall() {\r
-        assertEquals(expectedDOM, AudienceBuilder::buildAudience());\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesMarshall() {\r
-        Audience* a=AudienceBuilder::buildAudience();\r
-        a->setAudienceURI(expectedUri);\r
-        assertEquals(expectedOptionalAttributesDOM, a);\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 AudienceTest : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
+    XMLCh* expectedUri;
+
+public:
+    void setUp() {
+        expectedUri=XMLString::transcode("urn:oasis:names:tc:SAML:1.0:assertion");
+        singleElementFile = data_path + "saml1/core/impl/singleAudience.xml";
+        singleElementOptionalAttributesFile = data_path + "saml1/core/impl/singleAudienceAttributes.xml";
+        SAMLObjectBaseTestCase::setUp();
+    }
+    
+    void tearDown() {
+        XMLString::release(&expectedUri);
+        SAMLObjectBaseTestCase::tearDown();
+    }
+
+    void testSingleElementUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
+        Audience& a = dynamic_cast<Audience&>(*xo.get());
+        TSM_ASSERT("Uri is non-null", a.getAudienceURI()==NULL);
+    }
+
+    void testSingleElementOptionalAttributesUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));
+        Audience& a = dynamic_cast<Audience&>(*xo.get());
+        assertEquals("Uri", expectedUri, a.getAudienceURI());
+    }
+
+    void testSingleElementMarshall() {
+        assertEquals(expectedDOM, AudienceBuilder::buildAudience());
+    }
+
+    void testSingleElementOptionalAttributesMarshall() {
+        Audience* a=AudienceBuilder::buildAudience();
+        a->setAudienceURI(expectedUri);
+        assertEquals(expectedOptionalAttributesDOM, a);
+    }
+
+};