| | |
| | | * |
| | | * |
| | | * Copyright 2006-2008 Sun Microsystems, Inc. |
| | | * Portions copyright 2013 ForgeRock AS. |
| | | * Portions copyright 2013-2014 ForgeRock AS. |
| | | */ |
| | | package org.opends.server; |
| | | |
| | |
| | | import org.testng.annotations.Test; |
| | | import org.testng.annotations.AfterClass; |
| | | import org.opends.messages.Message; |
| | | import org.opends.server.replication.ReplicationTestCase; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Collections; |
| | |
| | | |
| | | @BeforeSuite |
| | | public final void suppressOutput() { |
| | | System.out.println("Replication DB implementation used in tests: '" + |
| | | ReplicationTestCase.replicationDbImplementation + "'."); |
| | | System.out.flush(); |
| | | |
| | | TestCaseUtils.suppressOutput(); |
| | | } |
| | | |