/** * Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.util.money; import org.testng.annotations.Test; import com.opengamma.util.test.AbstractFudgeBuilderTestCase; import com.opengamma.util.test.TestGroup; /** * Test Fudge encoding. */ @Test(groups = TestGroup.UNIT) public class UnorderedCurrencyPairFudgeEncodingTest extends AbstractFudgeBuilderTestCase { public void test() { UnorderedCurrencyPair object = UnorderedCurrencyPair.of(Currency.AUD, Currency.NZD); assertEncodeDecodeCycle(UnorderedCurrencyPair.class, object); } }