1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

Refactor: Pull more classes into baselib

This commit is contained in:
gnosygnu
2021-12-19 16:19:19 -05:00
parent 48559edffe
commit 0e80d7ef6d
7999 changed files with 1375876 additions and 1365947 deletions

View File

@@ -1,6 +1,6 @@
package gplx.langs.javascripts;
import gplx.core.tests.Gftest;
import gplx.frameworks.tests.GfoTstr;
import org.junit.Test;
public class JsString_Test {
@@ -19,9 +19,9 @@ public class JsString_Test {
}
class JsString_Tstr {
public void Test_slice(String note, String expd, String src, int bgn) {
Gftest.Eq__str(expd, JsString_.slice(src, bgn), note);
GfoTstr.Eq(expd, JsString_.slice(src, bgn), note);
}
public void Test_slice(String note, String expd, String src, int bgn, int end) {
Gftest.Eq__str(expd, JsString_.slice(src, bgn, end), note);
GfoTstr.Eq(expd, JsString_.slice(src, bgn, end), note);
}
}