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 *
1559N/A * You can obtain a copy of the license at
1559N/A * trunk/opends/resource/legal-notices/OpenDS.LICENSE
1559N/A * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
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
1559N/A * file and include the License file at
1559N/A * trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
1559N/A * add the following below this CDDL HEADER, with the fields enclosed
1559N/A * by brackets "[]" replaced with your own identifying 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}