vito
3 years ago
2 changed files with 141 additions and 36 deletions
@ -0,0 +1,50 @@
|
||||
package com.fr.design.mainframe.loghandler; |
||||
|
||||
import org.junit.Assert; |
||||
import org.junit.Test; |
||||
|
||||
import static org.junit.Assert.*; |
||||
|
||||
/** |
||||
* @author vito |
||||
* @version 10.0 |
||||
* Created by vito on 2022/1/25 |
||||
*/ |
||||
public class DesignerLogHandlerTest { |
||||
|
||||
@Test |
||||
public void findTplLink() { |
||||
Assert.assertArrayEquals( |
||||
new String[]{"(公式定位测试/单sheet2(1).cpt:0:A1)", "(公式定位测试/单sheet2(2).cpt:0:A1)"}, |
||||
DesignerLogHandler.findTplLink("错误代码:11300310 公式计算错误:(公式定位测试/单sheet2(1).cpt:0:A1),出错公式(公式定位测试/单sheet2(2).cpt:0:A1),的飞机啊") |
||||
); |
||||
Assert.assertArrayEquals( |
||||
new String[]{"(公式定位测试/单sheet2(1).frm:0:A1)", "(公式定位测试/单sheet2(2).frm:0:A1)"}, |
||||
DesignerLogHandler.findTplLink("错误代码:11300310 公式计算错误:(公式定位测试/单sheet2(1).frm:0:A1),出错公式(公式定位测试/单sheet2(2).frm:0:A1),的飞机啊") |
||||
); |
||||
Assert.assertArrayEquals( |
||||
new String[]{"(公式定位测试/单sheet2(1).cpt:0:A1)"}, |
||||
DesignerLogHandler.findTplLink("错误代码:11300310 公式计算错误:(公式定位测试/单sheet2(1).cpt:0:A1)的飞机啊") |
||||
); |
||||
Assert.assertArrayEquals( |
||||
new String[]{"(公式定位测试/单sheet2(1).cpt:0:A1)"}, |
||||
DesignerLogHandler.findTplLink("错误代码:11300310 公式(计算错误:(公式定位测试/单sheet2(1).cpt:0:A1)的飞机啊") |
||||
); |
||||
Assert.assertArrayEquals( |
||||
new String[]{"(公式定位测试/单sheet2(1).cpt:0:A1)"}, |
||||
DesignerLogHandler.findTplLink("错误代码:11300310 公式)计算错误:(公式定位测试/单sheet2(1).cpt:0:A1)的飞机啊") |
||||
); |
||||
Assert.assertArrayEquals( |
||||
new String[]{"(公式定位测试/单sheet2(1).cpt:0:A1)"}, |
||||
DesignerLogHandler.findTplLink("错误代码:11300310 公式计算错误:(公式定位测试/单sheet2(1).cpt:0:A1)的飞机)啊") |
||||
); |
||||
Assert.assertArrayEquals( |
||||
new String[]{"(公式定位测试/单sheet2(1).cpt:0:A1)"}, |
||||
DesignerLogHandler.findTplLink("错误代码:11300310 公式计算错误:(公式定位测试/单sheet2(1).cpt:0:A1)的飞机(啊") |
||||
); |
||||
Assert.assertArrayEquals( |
||||
new String[]{"(公式定位测试/单sheet2(1).cpt:0:A1)"}, |
||||
DesignerLogHandler.findTplLink("错误代码:11300310 公式(0fdasf)计算错误:(公式定位测试/单sheet2(1).cpt:0:A1)的飞机啊") |
||||
); |
||||
} |
||||
} |
Loading…
Reference in new issue