/** * Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.analytics.financial.model.volatility.smile.function; import org.testng.annotations.Test; import com.opengamma.util.test.TestGroup; /** * Test. */ @Test(groups = TestGroup.UNIT) public class SABRBerestyckiVolatilityFunctionTest extends SABRVolatilityFunctionTestCase { private static final SABRBerestyckiVolatilityFunction FUNCTION = new SABRBerestyckiVolatilityFunction(); @Override protected VolatilityFunctionProvider<SABRFormulaData> getFunction() { return FUNCTION; } }