1559N/A/*
1559N/A * CDDL HEADER START
1559N/A *
1559N/A * The contents of this file are subject to the terms of the
1559N/A * Common Development and Distribution License, Version 1.0 only
1559N/A * (the "License"). You may not use this file except in compliance
1559N/A * with the License.
1559N/A *
6982N/A * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
6982N/A * or http://forgerock.org/license/CDDLv1.0.html.
1559N/A * See the License for the specific language governing permissions
1559N/A * and limitations under the License.
1559N/A *
1559N/A * When distributing Covered Code, include this CDDL HEADER in each
6982N/A * file and include the License file at legal-notices/CDDLv1_0.txt.
6982N/A * If applicable, add the following below this CDDL HEADER, with the
6982N/A * fields enclosed by brackets "[]" replaced with your own identifying
6982N/A * information:
1559N/A * Portions Copyright [yyyy] [name of copyright owner]
1559N/A *
1559N/A * CDDL HEADER END
1559N/A *
1559N/A *
3215N/A * Copyright 2008 Sun Microsystems, Inc.
1559N/A */
1559N/A
1559N/Apackage org.opends.quicksetup;
1559N/A
1559N/Aimport org.testng.annotations.BeforeSuite;
2342N/Aimport org.opends.server.DirectoryServerTestCase;
1559N/A
1570N/Aimport java.io.IOException;
1570N/A
1559N/A/**
1559N/A *
1559N/A */
2342N/Apublic class QuickSetupTestCase extends DirectoryServerTestCase {
1570N/A @BeforeSuite
1570N/A public final void initServer()
1570N/A throws IOException, ApplicationException, InterruptedException
1570N/A {
1647N/A TestUtilities.initServer();
1570N/A }
1559N/A}