Examples of WikiModel


Examples of info.bliki.wiki.model.WikiModel

    }

    @Test public void testFormatnum005() {
        // default locale is ENGLISH
        assertThat(wikiModel.parseTemplates("{{formatnum:90.0}}")).isEqualTo("90.0");
        WikiModel germanWikiModel = newWikiTestModel(Locale.GERMAN);
        assertThat(germanWikiModel.parseTemplates("{{formatnum:90.0}}")).isEqualTo("90,0");
    }
View Full Code Here
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.