Package gnu.testlet.java.util.Currency

Source Code of gnu.testlet.java.util.Currency.France

// Tags: JDK1.4

// Copyright (C) 2004 Andrew John Hughes <gnu_andrew@member.fsf.org>

// This file is part of Mauve.

// Mauve is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2, or (at your option)
// any later version.

// Mauve is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Mauve; see the file COPYING.  If not, write to
// the Free Software Foundation, 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.

package gnu.testlet.java.util.Currency;

import gnu.testlet.Testlet;
import gnu.testlet.TestHarness;
import java.util.Calendar;
import java.util.Currency;
import java.util.Locale;

/**
* Class to test the French currency.
*
* @author Andrew John Hughes <gnu_andrew@member.fsf.org>
*/
public class France implements Testlet
{

  private static final Locale TEST_LOCALE = Locale.FRANCE;
  private static final String ISO4217_CODE = "FRF";
  private static final String CURRENCY_SYMBOL = ").";
  private static final int FRACTION_DIGITS = 2;
  private static final String EURO_ISO4217_CODE = "EUR";
  private static final String EURO_CURRENCY_SYMBOL = "\u20AC";
  private static final int EURO_FRACTION_DIGITS = 2;
  private static final int EURO_CHANGE_YEAR = 2002;
  private static final int EURO_CHANGE_MONTH = 0;
  private static final int EURO_CHANGE_DATE = 1;

  public void test(TestHarness harness)
  {
    Currency currency;
    Calendar calendar;
    Calendar euroCalendar;

    /* Set default Locale for the JVM */
    Locale.setDefault(TEST_LOCALE);
    /* Get an instance of the currency */
    currency = Currency.getInstance(TEST_LOCALE);
    /* Get the current time in the locale */
    calendar = Calendar.getInstance(TEST_LOCALE);
    /* Get the Euro change-over time in the locale */
    euroCalendar = Calendar.getInstance(TEST_LOCALE);
    euroCalendar.set(EURO_CHANGE_YEAR, EURO_CHANGE_MONTH, EURO_CHANGE_DATE);
    /* Do different comparisons depending on the state of change to the Euro */
    if (calendar.after(euroCalendar))
      {
        /* Check for the correct currency code */
        harness.check(currency.getCurrencyCode(),EURO_ISO4217_CODE, "Euro ISO 4217 currency code retrieval check (" +
                      currency.getCurrencyCode() + ").");
        /* Check for the correct currency symbol */
        harness.check(currency.getSymbol(), EURO_CURRENCY_SYMBOL, "Euro currency symbol retrieval check (" +
                      currency.getSymbol() + ").");
        /* Check for the correct fraction digits */
        harness.check(currency.getDefaultFractionDigits(), EURO_FRACTION_DIGITS,
                      "Euro currency fraction digits retrieval check (" + currency.getDefaultFractionDigits() + ").");
        /* Check for the correct currency code from toString()*/
        harness.check(currency.toString(),EURO_ISO4217_CODE, "Euro ISO 4217 currency code retrieval check (" +
                      currency.toString() + ").");
      }
    else
      {
          /* Check for the correct currency code */
          harness.check(currency.getCurrencyCode(),ISO4217_CODE, "ISO 4217 currency code retrieval check (" +
                        currency.getCurrencyCode() + ").");
          /* Check for the correct currency symbol */
          harness.check(currency.getSymbol(), CURRENCY_SYMBOL, "Currency symbol retrieval check (" +
                        currency.getSymbol() + ").");
          /* Check for the correct fraction digits */
          harness.check(currency.getDefaultFractionDigits(), FRACTION_DIGITS, "Currency fraction digits retrieval check (" +
                        currency.getDefaultFractionDigits() + ").");
          /* Check for the correct currency code from toString()*/
          harness.check(currency.toString(),ISO4217_CODE, "ISO 4217 currency code retrieval check ("
                        + currency.toString() + ").");
      }
  }

}
TOP

Related Classes of gnu.testlet.java.util.Currency.France

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.