specific.js revision 08b5793948544288f007d40b3391a6f69e2aeb07
0N/A/**
1879N/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 "./managedobjects/managedObjectsTest",
1879N/A "./resources/resourceTest",
1879N/A "./mapping/addMappingTest",
1879N/A "./mapping/reconTests",
1879N/A "./mapping/propertyMappingTest",
1879N/A "./mapping/correlationTest",
1879N/A "./connector/editConnectorTest",
1879N/A "./connector/addConnectorTest",
1879N/A "./resourceData/editResourceViewTest"
1879N/A], function (moTest, resourceTest, addMappingTest, reconTests, propertyMappingTest, correlationTest, editConnectorTest, addConnectorTest, editResourceViewTest) {
1879N/A
1879N/A return {
1879N/A executeAll: function (server) {
1879N/A QUnit.moduleDone(function() {
1879N/A $(".bootstrap-dialog").remove();
1879N/A });
1879N/A
1879N/A addMappingTest.executeAll(server);
1879N/A resourceTest.executeAll(server);
1879N/A reconTests.executeAll(server);
1879N/A correlationTest.executeAll(server);
1879N/A moTest.executeAll(server);
1879N/A propertyMappingTest.executeAll(server);
1879N/A editConnectorTest.executeAll(server);
1879N/A addConnectorTest.executeAll(server);
1879N/A editResourceViewTest.executeAll(server);
0N/A }
0N/A };
0N/A});
0N/A