/** * Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.analytics.math.integration; import org.testng.annotations.Test; import com.opengamma.util.test.TestGroup; /** * Test. */ @Test(groups = TestGroup.UNIT) public class ExtendedTrapezoidIntegrator1DTest extends Integrator1DTestCase { private static final Integrator1D<Double, Double> INTEGRATOR = new ExtendedTrapezoidIntegrator1D(); @Override public Integrator1D<Double, Double> getIntegrator() { return INTEGRATOR; } }