specific.js revision e217869edbae075c18fd85c2d468a7ce9050b3b3
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel/**
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel *
e217869edbae075c18fd85c2d468a7ce9050b3b3Jake Feasel * Copyright (c) 2014-2015 ForgeRock AS. All Rights Reserved
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel *
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * The contents of this file are subject to the terms
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * of the Common Development and Distribution License
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * (the License). You may not use this file except in
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * compliance with the License.
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel *
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * You can obtain a copy of the License at
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * http://forgerock.org/license/CDDLv1.0.html
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * See the License for the specific language governing
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * permission and limitations under the License.
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel *
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * When distributing Covered Code, include this CDDL
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * Header Notice in each file and include the License file
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * at http://forgerock.org/license/CDDLv1.0.html
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * If applicable, add the following below the CDDL Header,
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * with the fields enclosed by brackets [] replaced by
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * your own identifying information:
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * "Portions Copyrighted [year] [name of copyright owner]"
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel */
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel/*global require, define, QUnit, $ */
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feaseldefine([
e217869edbae075c18fd85c2d468a7ce9050b3b3Jake Feasel "./mocks/adminInit",
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne "./managedobjects/managedObjectsTest",
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne "./resources/resourceTest",
433f48af5998e03a03440dce699c9dcfd7b86375Jason Browne "./mapping/addMappingTest",
540772c380f0a368687ce285f9b915e0affec03dhuck.elliott "./mapping/reconTests",
540772c380f0a368687ce285f9b915e0affec03dhuck.elliott "./mapping/propertyMappingTest"
e217869edbae075c18fd85c2d468a7ce9050b3b3Jake Feasel], function (adminInit, moTest, resourceTest, addMappingTest, reconTests, propertyMappingTest) {
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel return {
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel executeAll: function (server) {
e217869edbae075c18fd85c2d468a7ce9050b3b3Jake Feasel
e217869edbae075c18fd85c2d468a7ce9050b3b3Jake Feasel adminInit(server);
e217869edbae075c18fd85c2d468a7ce9050b3b3Jake Feasel
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne moTest.executeAll(server);
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne resourceTest.executeAll(server);
7ed4684789d023e1d4ede1b0d4468b9724587466Elizabeth Browne reconTests.executeAll(server);
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne addMappingTest.executeAll(server);
540772c380f0a368687ce285f9b915e0affec03dhuck.elliott propertyMappingTest.executeAll(server);
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel }
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel };
72c445f9416ec494d174477d211732dfc6d737f4Jason Browne});