/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program 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 Lesser General Public License for more details. * * Copyright 2005 - 2008 Pentaho Corporation. All rights reserved. * * @created Aug 15, 2005 * @author James Dixon */ package org.pentaho.test.platform.util; import java.util.ResourceBundle; import junit.framework.Assert; import junit.framework.TestCase; import org.pentaho.platform.util.messages.MessageUtil; public class MessageUtilTest extends TestCase { public void testMessageUtil() { System.out.println("Error Message with two arguments " + MessageUtil.formatErrorMessage("arg1", "arg2")); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ System.out.println("Message with two arguments " + MessageUtil.formatMessage("arg1", "arg2"));//$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ System.out.println("Message with three arguments " + MessageUtil.formatMessage("arg1", "arg2", "arg3"));//$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ System.out.println("Message with four arguments " + MessageUtil.formatMessage("arg1", "arg2", "arg3", "arg4"));//$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ ResourceBundle resourceBundle = null; System.out.println("Error String with one arguments " + MessageUtil.getErrorString(resourceBundle, "arg1"));//$NON-NLS-1$ //$NON-NLS-2$ System.out .println("Error String with two arguments " + MessageUtil.getErrorString(resourceBundle, "arg1", "arg2"));//$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ System.out .println("Error String with three arguments " + MessageUtil.getErrorString(resourceBundle, "arg1", "arg2", "arg3"));//$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ System.out .println("Error String with four arguments " + MessageUtil.getErrorString(resourceBundle, "arg1", "arg2", "arg3", "arg4"));//$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ System.out .println("Error String with five arguments " + MessageUtil.getErrorString(resourceBundle, "arg1", "arg2", "arg3", "arg4", "arg5")); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ System.out.println("String with one arguments " + MessageUtil.getString(resourceBundle, "arg1"));//$NON-NLS-1$ //$NON-NLS-2$ System.out.println("String with two arguments " + MessageUtil.getString(resourceBundle, "arg1", "arg2"));//$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ System.out.println("String with three arguments " + MessageUtil.getString(resourceBundle, "arg1", "arg2", "arg3"));//$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ System.out .println("String with four arguments " + MessageUtil.getString(resourceBundle, "arg1", "arg2", "arg3", "arg4"));//$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ System.out .println("String with five arguments " + MessageUtil.getString(resourceBundle, "arg1", "arg2", "arg3", "arg4", "arg5")); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ Assert.assertTrue(true); } public static void main(final String[] args) { MessageUtilTest test = new MessageUtilTest(); try { test.testMessageUtil(); } finally { } } }