@Test
public void givenMetricsProviderWithoutSupportForGaugeWhenRequestingGaugeExpectDefaultNullImplementation()
{
MetricsProvider underTest = new MetricsProviderAdapter();
MetricsGaugeFactory factory = underTest.createFactory( MetricsGaugeFactory.class );
MetricsGauge<Long> test = factory.registerGauge( getClass(), "test", new MetricsGauge<Long>()
{
@Override
public Long value()
{
return System.currentTimeMillis();