Example usage for com.liferay.portal.kernel.util LocalizationUtil getLocalization

List of usage examples for com.liferay.portal.kernel.util LocalizationUtil getLocalization

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util LocalizationUtil getLocalization.

Prototype

public static Localization getLocalization() 

Source Link

Usage

From source file:com.liferay.dynamic.data.mapping.BaseDDMTestCase.java

License:Open Source License

protected void setUpLocalizationUtil() {
    spy(LocalizationUtil.class);

    when(LocalizationUtil.getLocalization()).thenReturn(new LocalizationImpl());
}