1 package org.junit.internal.management; 2 3 import java.util.Collections; 4 import java.util.List; 5 6 /** 7 * No-op implementation of RuntimeMXBean when the platform doesn't provide it. 8 */ 9 class FakeRuntimeMXBean implements RuntimeMXBean { 10 11 /** 12 * {@inheritDoc} 13 * 14 * <p>Always returns an empty list. 15 */ getInputArguments()16 public List<String> getInputArguments() { 17 return Collections.emptyList(); 18 } 19 20 } 21 22