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