Convert from NULL macro to nullptr, remove unused zlib code.
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / OneTimeUse20Test.h
1 /*
2  *  Copyright 2001-2010 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "internal.h"
18 #include <saml/saml2/core/Assertions.h>
19
20 using namespace opensaml::saml2;
21
22 class OneTimeUse20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
23
24 public:
25     void setUp() {
26         singleElementFile = data_path + "saml2/core/impl/OneTimeUse.xml";
27         SAMLObjectBaseTestCase::setUp();
28     }
29     
30     void tearDown() {
31         SAMLObjectBaseTestCase::tearDown();
32     }
33
34     void testSingleElementUnmarshall() {
35         auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
36         OneTimeUse* otu = dynamic_cast<OneTimeUse*>(xo.get());
37         TS_ASSERT(otu!=nullptr);
38     }
39
40     void testSingleElementMarshall() {
41         OneTimeUse * otu = OneTimeUseBuilder::buildOneTimeUse();
42         assertEquals(expectedDOM, otu);
43     }
44
45
46 };