Skip to content

Instantly share code, notes, and snippets.

@fbenevides
Created November 4, 2010 21:02
Show Gist options
  • Save fbenevides/663183 to your computer and use it in GitHub Desktop.
Save fbenevides/663183 to your computer and use it in GitHub Desktop.
package org.benevides.correios.domain;
import org.junit.Before;
public class SedexShippingCalculatorTest {
ShippingCalculator shippingCalculator;
ShippingHelper helper = new ShippingHelper();
@Before
public void setup() {
this.shippingCalculator = new SedexShippingCalculator(helper.getAValidShipping());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment