1 /*
2 * ====================
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4 *
5 * Copyright 2008-2009 Sun Microsystems, Inc. All rights reserved.
6 *
7 * The contents of this file are subject to the terms of the Common Development
8 * and Distribution License("CDDL") (the "License"). You may not use this file
9 * except in compliance with the License.
10 *
11 * You can obtain a copy of the License at
12 * http://IdentityConnectors.dev.java.net/legal/license.txt
13 * See the License for the specific language governing permissions and limitations
14 * under the License.
15 *
16 * When distributing the Covered Code, include this CDDL Header Notice in each file
17 * and include the License file at identityconnectors/legal/license.txt.
18 * If applicable, add the following below this CDDL Header, with the fields
19 * enclosed by brackets [] replaced by your own identifying information:
20 * "Portions Copyrighted [year] [name of copyright owner]"
21 * ====================
22 */
23 package org.identityconnectors.contract.test;
24
25 import org.junit.runner.RunWith;
26 import org.junit.runners.Suite;
27
28 @RunWith(Suite.class)
29 @Suite.SuiteClasses({
30 AttributeTests.class,
31 AuthenticationApiOpTests.class,
32 ConfigurationTests.class,
33 CreateApiOpTests.class,
34 DeleteApiOpTests.class,
35 GetApiOpTests.class,
36 MultiOpTests.class,
37 SchemaApiOpTests.class,
38 ScriptOnConnectorApiOpTests.class,
39 ScriptOnResourceApiOpTests.class,
40 SearchApiOpTests.class,
41 SyncApiOpTests.class,
42 TestApiOpTests.class,
43 UpdateApiOpTests.class,
44 ValidateApiOpTests.class
45 })
46 public class ContractTestSuite {
47 // the class remains completely empty,
48 // being used only as a holder for the above annotations
49 }