specific.js revision 198a26b947e9f9c6a7cd6c8a9528f9a74d43bf3a
45N/A/**
45N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
45N/A *
45N/A * Copyright (c) 2014 ForgeRock AS. All Rights Reserved
45N/A *
45N/A * The contents of this file are subject to the terms
45N/A * of the Common Development and Distribution License
45N/A * (the License). You may not use this file except in
45N/A * compliance with the License.
45N/A *
45N/A * You can obtain a copy of the License at
45N/A * http://forgerock.org/license/CDDLv1.0.html
45N/A * See the License for the specific language governing
45N/A * permission and limitations under the License.
45N/A *
45N/A * When distributing Covered Code, include this CDDL
45N/A * Header Notice in each file and include the License file
45N/A * at http://forgerock.org/license/CDDLv1.0.html
45N/A * If applicable, add the following below the CDDL Header,
45N/A * with the fields enclosed by brackets [] replaced by
45N/A * your own identifying information:
45N/A * "Portions Copyrighted [year] [name of copyright owner]"
45N/A */
45N/A
45N/A/*global require, define, QUnit, $ */
45N/A
45N/Adefine([
45N/A "./adminbasetests",
45N/A "./managedobjects/managedobjectstest",
45N/A "./resources/resourcetests"
45N/A], function (adminbasetest, motest, resourcetest) {
45N/A
45N/A return {
45N/A executeAll: function (server) {
45N/A motest.executeAll(server);
45N/A adminbasetest.executeAll(server);
45N/A resourcetest.executeAll(server);
45N/A }
45N/A };
45N/A});