From 5e66523676b861ecff9b4e4874acc953faf3f944 Mon Sep 17 00:00:00 2001 From: richie Date: Tue, 3 Sep 2019 09:46:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=95=E5=85=83=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/fanruan/api/i18n/I18nKitTest.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/test/java/com/fanruan/api/i18n/I18nKitTest.java diff --git a/src/test/java/com/fanruan/api/i18n/I18nKitTest.java b/src/test/java/com/fanruan/api/i18n/I18nKitTest.java new file mode 100644 index 0000000..70f479d --- /dev/null +++ b/src/test/java/com/fanruan/api/i18n/I18nKitTest.java @@ -0,0 +1,19 @@ +package com.fanruan.api.i18n; + +import org.junit.Assert; +import org.junit.Test; + +import static org.junit.Assert.*; + +/** + * @author richie + * @version 10.0 + * Created by richie on 2019-09-03 + */ +public class I18nKitTest { + + @Test + public void getLocText() { + Assert.assertEquals("No Key", I18nKit.getLocText("No Key")); + } +} \ No newline at end of file