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