specific.js revision d1a2899a06be1eab885056aeda85adcd67c010b0
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel/**
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel *
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * Copyright (c) 2014 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([
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne "./adminBaseTest",
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne "./managedobjects/managedObjectsTest",
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne "./resources/resourceTest",
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne "./mapping/addMappingTest"
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne], function (adminBaseTest, moTest, resourceTest, addMappingTest) {
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel return {
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel executeAll: function (server) {
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne moTest.executeAll(server);
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne adminBaseTest.executeAll(server);
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne resourceTest.executeAll(server);
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne addMappingTest.executeAll(server);
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel }
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel };
72c445f9416ec494d174477d211732dfc6d737f4Jason Browne});