/* * #%L * BroadleafCommerce Integration * %% * Copyright (C) 2009 - 2013 Broadleaf Commerce * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ package org.broadleafcommerce.core.pricing; import org.broadleafcommerce.core.pricing.domain.ShippingRateImpl; import org.testng.annotations.DataProvider; import java.math.BigDecimal; public class ShippingRateDataProvider { @DataProvider(name = "basicShippingRates") public static Object[][] provideBasicShippingRates(){ ShippingRateImpl sr = new ShippingRateImpl(); sr.setFeeType("SHIPPING"); sr.setFeeSubType("ALL"); sr.setFeeBand(1); sr.setBandUnitQuantity(BigDecimal.valueOf(29.99)); sr.setBandResultQuantity(BigDecimal.valueOf(8.5)); sr.setBandResultPercent(0); ShippingRateImpl sr2 = new ShippingRateImpl(); sr2.setFeeType("SHIPPING"); sr2.setFeeSubType("ALL"); sr2.setFeeBand(2); sr2.setBandUnitQuantity(BigDecimal.valueOf(999999.99)); sr2.setBandResultQuantity(BigDecimal.valueOf(8.5)); sr2.setBandResultPercent(0); return new Object[][] {{sr, sr2}}; } }