blob: 477b1509ce456053d064b40446d8a7720a36cf6c [file] [log] [blame]
package org.junit.internal.management;
import java.util.Collections;
import java.util.List;
/**
* No-op implementation of RuntimeMXBean when the platform doesn't provide it.
*/
class FakeRuntimeMXBean implements RuntimeMXBean {
/**
* {@inheritDoc}
*
* <p>Always returns an empty list.
*/
public List<String> getInputArguments() {
return Collections.emptyList();
}
}