GWT单元测试用例

时间:2013-06-22 12:38:33

标签: gwt gwttestcase

我打算为GWT中的一个帮助方法编写一个单元测试用例。

错误地说错误:GWT.create()仅在客户端代码中可用!例如,它不能从服务器代码中调用。如果您正在运行单元测试,请检查您的测试用例是否扩展了GWTTestCase,并且未在初始化程序或构造函数中调用GWT.create()。

当我调试时,我发现错误来自行

我的代码中的

NumberFormat formatter = NumberFormat.getCurrencyFormat();。请帮助。

这是我的代码:

测试用例:

public class CurrencyFormatterTest extends GWTTestCase {

    private CurrencyFormatter currencyFormatter = new CurrencyFormatter();

    public void testCurrencyFormatForActualCurrencyString() {
        String formattedString = currencyFormatter.format( " 123456.78999" );
        assertEquals( "US$123,456.79", formattedString );
    }

@Override
    public String getModuleName() {
        return null;
    }
}

要测试的代码

public class CurrencyFormatter implements Formatter {

    @Override
    public String format( Object value ) {
        if ( value == null || value.equals( "" ) ) {
            return "";
        }
        Double val = Double.parseDouble( value.toString() );
        NumberFormat formatter = NumberFormat.getCurrencyFormat();
        String formattedValue = formatter.format( val );
        return formattedValue;
    }

}

1 个答案:

答案 0 :(得分:2)

如果getModuleName返回null,那么您的测试就像任何其他JUnit测试一样运行,即 GWT上下文中的

getModuleName返回模块的名称(您传递给GWT编译器的名称,或另一个GWT模块中的<inherit>)以切换为运行作为GWT