specific.js revision e3cca5e1f9f9a55839d4bd7d34f51145f835a7b8
0N/A/**
0N/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
0N/A * If applicable, add the following below the CDDL Header,
0N/A * with the fields enclosed by brackets [] replaced by
0N/A * your own identifying information:
0N/A * "Portions Copyrighted [year] [name of copyright owner]"
0N/A */
0N/A
0N/A/*global require, define, QUnit, $ */
0N/A
0N/Adefine([
0N/A "./managedobjects/managedObjectsTest",
0N/A "./resources/resourceTest",
0N/A "./mapping/addMappingTest",
0N/A "./mapping/reconTests",
0N/A "./mapping/propertyMappingTest",
0N/A "./mapping/correlationTest",
0N/A "./mapping/linkQualifierTest",
0N/A "./connector/editConnectorTest",
0N/A "./connector/addConnectorTest",
0N/A "./resourceData/editResourceViewTest"
0N/A], function (moTest, resourceTest, addMappingTest, reconTests, propertyMappingTest, correlationTest, linkQualifierTest, editConnectorTest, addConnectorTest, editResourceViewTest) {
0N/A
0N/A return {
0N/A executeAll: function (server) {
0N/A QUnit.moduleDone(function() {
0N/A $(".bootstrap-dialog").remove();
0N/A });
0N/A
0N/A addMappingTest.executeAll(server);
0N/A resourceTest.executeAll(server);
0N/A reconTests.executeAll(server);
0N/A correlationTest.executeAll(server);
0N/A linkQualifierTest.executeAll(server);
0N/A moTest.executeAll(server);
0N/A propertyMappingTest.executeAll(server);
0N/A editConnectorTest.executeAll(server);
0N/A addConnectorTest.executeAll(server);
0N/A editResourceViewTest.executeAll(server);
0N/A }
0N/A };
0N/A});
0N/A