| | |
| | | * |
| | | * |
| | | * Copyright 2006-2008 Sun Microsystems, Inc. |
| | | * Portions Copyright 2015 ForgeRock AS. |
| | | */ |
| | | |
| | | package org.opends.quicksetup; |
| | | |
| | | import static org.testng.Assert.*; |
| | |
| | | /** |
| | | * Configuration Tester. |
| | | */ |
| | | @SuppressWarnings("javadoc") |
| | | @Test(groups = {"slow"}) |
| | | public class ConfigurationTest extends QuickSetupTestCase { |
| | | |
| | | Configuration config; |
| | | private Configuration config; |
| | | |
| | | @BeforeClass |
| | | public void setUp() throws Exception { |
| | |
| | | |
| | | @Test(enabled = false) |
| | | public void testGetPort() throws IOException { |
| | | assertTrue(TestUtilities.ldapPort.equals(config.getPort())); |
| | | assertEquals(TestUtilities.ldapPort, (Integer) config.getPort()); |
| | | } |
| | | |
| | | @Test(enabled = false) |