blob: 8bad032f34b9c10f42780269cc8336292457f339 [file] [log] [blame]
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package amxtest;
import org.testng.annotations.*;
import org.testng.Assert;
import javax.management.ObjectName;
import java.lang.Exception;
import java.lang.reflect.Method;
import java.util.Set;
import java.util.*;
import java.util.Map;
import java.util.List;
import java.util.HashMap;
import java.util.ArrayList;
import org.glassfish.admin.amx.core.*;
import org.glassfish.admin.amx.base.*;
import org.glassfish.admin.amx.config.*;
import org.glassfish.admin.amx.monitoring.*;
import org.glassfish.admin.amx.util.CollectionUtil;
import org.glassfish.admin.amx.util.ExceptionUtil;
import org.glassfish.admin.amx.util.MapUtil;
import org.glassfish.admin.amx.logging.Logging;
import org.glassfish.admin.amx.annotation.*;
/**
*/
//@Test(groups={"amx"}, description="AMXProxy tests", sequential=false, threadPoolSize=5)
@Test(
sequential=false, threadPoolSize=10,
groups =
{
"amx"
},
description = "test varioius miscellaneous AMX feature"
)
public final class AMXOtherTests extends AMXTestBase
{
public AMXOtherTests()
{
}
@Test
public void testVariousGetters()
{
final RuntimeRoot runtimeRoot = getDomainRootProxy().getRuntime();
final Map<String,ServerRuntime> serverRuntimes = runtimeRoot.getServerRuntime();
}
}