1 package org.jellyfish; 2 3 import org.jellyfish.config.Config; 4 5 public class ConfigurationManagerMock implements ConfigurationManager { 6 7 public boolean getConfigurationCalled; 8 public Config getConfigurationReturn; 9 public Config getConfiguration() { 10 getConfigurationCalled = true; 11 return getConfigurationReturn; 12 } 13 14 }

This page was automatically generated by Maven