Skip to content

Commit c8c27c3

Browse files
committed
target
编译结果不需要提交
1 parent 8907c0b commit c8c27c3

File tree

89 files changed

+6586
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+6586
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
eclipse.preferences.version=1
2+
encoding//src/main/java=UTF-8
3+
encoding//src/test/java=UTF-8
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
3+
org.eclipse.jdt.core.compiler.compliance=1.6
4+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
5+
org.eclipse.jdt.core.compiler.source=1.6

core/target/argo-1.0.0-sources.jar

158 KB
Binary file not shown.

core/target/argo-1.0.0.jar

277 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

core/target/lib/aopalliance-1.0.jar

4.36 KB
Binary file not shown.
158 KB
Binary file not shown.

core/target/lib/argo-1.0.0.jar

277 KB
Binary file not shown.
562 KB
Binary file not shown.

core/target/lib/commons-lang-2.4.jar

256 KB
Binary file not shown.

core/target/lib/guava-13.0.1.jar

1.8 MB
Binary file not shown.

core/target/lib/guice-3.0.jar

694 KB
Binary file not shown.
695 KB
Binary file not shown.

core/target/lib/javax.inject-1.jar

2.44 KB
Binary file not shown.
83.4 KB
Binary file not shown.

core/target/lib/lib.zip

4.86 MB
Binary file not shown.

core/target/lib/log4j-1.2.16.jar

470 KB
Binary file not shown.

core/target/lib/slf4j-api-1.7.2.jar

25.5 KB
Binary file not shown.
8.61 KB
Binary file not shown.

core/target/lib/velocity-1.7.jar

439 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#Generated by Maven
2+
#Mon Apr 08 17:24:31 CST 2013
3+
version=1.0.0
4+
groupId=com.bj58.spat
5+
artifactId=argo
Lines changed: 226 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,226 @@
1+
<html>
2+
<head>
3+
<title>TestNG: Command line test</title>
4+
<link href="../testng.css" rel="stylesheet" type="text/css" />
5+
<link href="../my-testng.css" rel="stylesheet" type="text/css" />
6+
7+
<style type="text/css">
8+
.log { display: none;}
9+
.stack-trace { display: none;}
10+
</style>
11+
<script type="text/javascript">
12+
<!--
13+
function flip(e) {
14+
current = e.style.display;
15+
if (current == 'block') {
16+
e.style.display = 'none';
17+
return 0;
18+
}
19+
else {
20+
e.style.display = 'block';
21+
return 1;
22+
}
23+
}
24+
25+
function toggleBox(szDivId, elem, msg1, msg2)
26+
{
27+
var res = -1; if (document.getElementById) {
28+
res = flip(document.getElementById(szDivId));
29+
}
30+
else if (document.all) {
31+
// this is the way old msie versions work
32+
res = flip(document.all[szDivId]);
33+
}
34+
if(elem) {
35+
if(res == 0) elem.innerHTML = msg1; else elem.innerHTML = msg2;
36+
}
37+
38+
}
39+
40+
function toggleAllBoxes() {
41+
if (document.getElementsByTagName) {
42+
d = document.getElementsByTagName('div');
43+
for (i = 0; i < d.length; i++) {
44+
if (d[i].className == 'log') {
45+
flip(d[i]);
46+
}
47+
}
48+
}
49+
}
50+
51+
// -->
52+
</script>
53+
54+
</head>
55+
<body>
56+
<h2 align='center'>Command line test</h2><table border='1' align="center">
57+
<tr>
58+
<td>Tests passed/Failed/Skipped:</td><td>19/0/0</td>
59+
</tr><tr>
60+
<td>Started on:</td><td>Thu May 09 15:18:53 CST 2013</td>
61+
</tr>
62+
<tr><td>Total time:</td><td>0 seconds (91 ms)</td>
63+
</tr><tr>
64+
<td>Included groups:</td><td></td>
65+
</tr><tr>
66+
<td>Excluded groups:</td><td></td>
67+
</tr>
68+
</table><p/>
69+
<small><i>(Hover the method name to see the test class name)</i></small><p/>
70+
<table width='100%' border='1' class='invocation-passed'>
71+
<tr><td colspan='4' align='center'><b>PASSED TESTS</b></td></tr>
72+
<tr><td><b>Test method</b></td>
73+
<td width="30%"><b>Exception</b></td>
74+
<td width="10%"><b>Time (seconds)</b></td>
75+
<td><b>Instance</b></td>
76+
</tr>
77+
<tr>
78+
<td title='learn.ExceptionTest.test()'><b>test</b><br>Test class: learn.ExceptionTest</td>
79+
<td></td>
80+
<td>0</td>
81+
<td>learn.ExceptionTest@939b78e</td></tr>
82+
<tr>
83+
<td title='com.bj58.argo.route.PathMatcherTest.test()'><b>test</b><br>Test class: com.bj58.argo.route.PathMatcherTest</td>
84+
<td></td>
85+
<td>0</td>
86+
<td>com.bj58.argo.route.PathMatcherTest@78dc6a77</td></tr>
87+
<tr>
88+
<td title='com.bj58.argo.learn.ClassTest.testAnnotation()'><b>testAnnotation</b><br>Test class: com.bj58.argo.learn.ClassTest</td>
89+
<td></td>
90+
<td>0</td>
91+
<td>com.bj58.argo.learn.ClassTest@4ed1e89e</td></tr>
92+
<tr>
93+
<td title='com.bj58.argo.ArgoExceptionTest.testBoth()'><b>testBoth</b><br>Test class: com.bj58.argo.ArgoExceptionTest</td>
94+
<td></td>
95+
<td>0</td>
96+
<td>com.bj58.argo.ArgoExceptionTest@488e32e7</td></tr>
97+
<tr>
98+
<td title='com.bj58.argo.ArgoExceptionTest.testCause()'><b>testCause</b><br>Test class: com.bj58.argo.ArgoExceptionTest</td>
99+
<td></td>
100+
<td>0</td>
101+
<td>com.bj58.argo.ArgoExceptionTest@488e32e7</td></tr>
102+
<tr>
103+
<td title='com.bj58.argo.utils.PathUtilsTest.testCombine()'><b>testCombine</b><br>Test class: com.bj58.argo.utils.PathUtilsTest</td>
104+
<td></td>
105+
<td>0</td>
106+
<td>com.bj58.argo.utils.PathUtilsTest@509df6f1</td></tr>
107+
<tr>
108+
<td title='com.bj58.argo.learn.FileTest.testContain()'><b>testContain</b><br>Test class: com.bj58.argo.learn.FileTest</td>
109+
<td></td>
110+
<td>0</td>
111+
<td>com.bj58.argo.learn.FileTest@2d342ba4</td></tr>
112+
<tr>
113+
<td title='com.bj58.argo.utils.PathUtilsTest.testContains()'><b>testContains</b><br>Test class: com.bj58.argo.utils.PathUtilsTest</td>
114+
<td></td>
115+
<td>0</td>
116+
<td>com.bj58.argo.utils.PathUtilsTest@509df6f1</td></tr>
117+
<tr>
118+
<td title='com.bj58.argo.ArgoExceptionTest.testContext()'><b>testContext</b><br>Test class: com.bj58.argo.ArgoExceptionTest</td>
119+
<td></td>
120+
<td>0</td>
121+
<td>com.bj58.argo.ArgoExceptionTest@488e32e7</td></tr>
122+
<tr>
123+
<td title='com.bj58.argo.utils.PathUtilsTest.testConventPath()'><b>testConventPath</b><br>Test class: com.bj58.argo.utils.PathUtilsTest</td>
124+
<td></td>
125+
<td>0</td>
126+
<td>com.bj58.argo.utils.PathUtilsTest@509df6f1</td></tr>
127+
<tr>
128+
<td title='com.bj58.argo.learn.ClassTest.testField()'><b>testField</b><br>Test class: com.bj58.argo.learn.ClassTest</td>
129+
<td></td>
130+
<td>0</td>
131+
<td>com.bj58.argo.learn.ClassTest@4ed1e89e</td></tr>
132+
<tr>
133+
<td title='com.bj58.argo.ArgoFilterTest.testInit()'><b>testInit</b><br>Test class: com.bj58.argo.ArgoFilterTest</td>
134+
<td></td>
135+
<td>0</td>
136+
<td>com.bj58.argo.ArgoFilterTest@32ef2c60</td></tr>
137+
<tr>
138+
<td title='com.bj58.argo.ArgoExceptionTest.testMessage()'><b>testMessage</b><br>Test class: com.bj58.argo.ArgoExceptionTest</td>
139+
<td></td>
140+
<td>0</td>
141+
<td>com.bj58.argo.ArgoExceptionTest@488e32e7</td></tr>
142+
<tr>
143+
<td title='com.bj58.argo.utils.OnlyOnceConditionTest.testMore()'><b>testMore</b><br>Test class: com.bj58.argo.utils.OnlyOnceConditionTest</td>
144+
<td><div><pre>com.bj58.argo.ArgoException: This is a test.
145+
at com.bj58.argo.ArgoException$ArgoExceptionBuilder.build(ArgoException.java:98)
146+
at com.bj58.argo.utils.OnlyOnceCondition.check(OnlyOnceCondition.java:27)
147+
at com.bj58.argo.utils.OnlyOnceConditionTest.testMore(OnlyOnceConditionTest.java:46)
148+
at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:77)
149+
at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeMulti(TestNGDirectoryTestSuite.java:189)
150+
at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(TestNGDirectoryTestSuite.java:105)
151+
at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:117)
152+
at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208)
153+
at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:158)
154+
at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:86)
155+
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153)
156+
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95)
157+
... Removed 25 stack frames</pre></div><a href='#' onClick='toggleBox("stack-trace1632905845", this, "Click to show all stack frames", "Click to hide stack frames")'>Click to show all stack frames</a>
158+
<div class='stack-trace' id='stack-trace1632905845'><pre>com.bj58.argo.ArgoException: This is a test.
159+
at com.bj58.argo.ArgoException$ArgoExceptionBuilder.build(ArgoException.java:98)
160+
at com.bj58.argo.utils.OnlyOnceCondition.check(OnlyOnceCondition.java:27)
161+
at com.bj58.argo.utils.OnlyOnceConditionTest.testMore(OnlyOnceConditionTest.java:46)
162+
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
163+
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
164+
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
165+
at java.lang.reflect.Method.invoke(Method.java:597)
166+
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:80)
167+
at org.testng.internal.Invoker.invokeMethod(Invoker.java:714)
168+
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:901)
169+
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1231)
170+
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:127)
171+
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:111)
172+
at org.testng.TestRunner.privateRun(TestRunner.java:767)
173+
at org.testng.TestRunner.run(TestRunner.java:617)
174+
at org.testng.SuiteRunner.runTest(SuiteRunner.java:334)
175+
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329)
176+
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291)
177+
at org.testng.SuiteRunner.run(SuiteRunner.java:240)
178+
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
179+
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
180+
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1198)
181+
at org.testng.TestNG.runSuitesLocally(TestNG.java:1123)
182+
at org.testng.TestNG.run(TestNG.java:1031)
183+
at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:77)
184+
at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeMulti(TestNGDirectoryTestSuite.java:189)
185+
at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(TestNGDirectoryTestSuite.java:105)
186+
at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:117)
187+
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
188+
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
189+
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
190+
at java.lang.reflect.Method.invoke(Method.java:597)
191+
at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208)
192+
at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:158)
193+
at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:86)
194+
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153)
195+
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95)
196+
</pre></div></td>
197+
<td>0</td>
198+
<td>com.bj58.argo.utils.OnlyOnceConditionTest@20c1f10e</td></tr>
199+
<tr>
200+
<td title='com.bj58.argo.utils.OnlyOnceConditionTest.testOnlyOnce()'><b>testOnlyOnce</b><br>Test class: com.bj58.argo.utils.OnlyOnceConditionTest</td>
201+
<td></td>
202+
<td>0</td>
203+
<td>com.bj58.argo.utils.OnlyOnceConditionTest@20c1f10e</td></tr>
204+
<tr>
205+
<td title='com.bj58.argo.route.PathMatcherTest.testPathMatch()'><b>testPathMatch</b><br>Test class: com.bj58.argo.route.PathMatcherTest</td>
206+
<td></td>
207+
<td>0</td>
208+
<td>com.bj58.argo.route.PathMatcherTest@78dc6a77</td></tr>
209+
<tr>
210+
<td title='com.bj58.argo.utils.PathUtilsTest.testRelativePath()'><b>testRelativePath</b><br>Test class: com.bj58.argo.utils.PathUtilsTest</td>
211+
<td></td>
212+
<td>0</td>
213+
<td>com.bj58.argo.utils.PathUtilsTest@509df6f1</td></tr>
214+
<tr>
215+
<td title='com.bj58.argo.utils.PathUtilsTest.testSimplyPath()'><b>testSimplyPath</b><br>Test class: com.bj58.argo.utils.PathUtilsTest</td>
216+
<td></td>
217+
<td>0</td>
218+
<td>com.bj58.argo.utils.PathUtilsTest@509df6f1</td></tr>
219+
<tr>
220+
<td title='com.bj58.argo.utils.PathUtilsTest.testSimplyWithoutPrefix()'><b>testSimplyWithoutPrefix</b><br>Test class: com.bj58.argo.utils.PathUtilsTest</td>
221+
<td></td>
222+
<td>0</td>
223+
<td>com.bj58.argo.utils.PathUtilsTest@509df6f1</td></tr>
224+
</table><p>
225+
</body>
226+
</html>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- Generated by org.testng.reporters.JUnitXMLReporter -->
3+
<testsuite hostname="liuzw-PC-58" name="Command line test" tests="19" failures="0" timestamp="9 May 2013 07:18:53 GMT" time="0.091" errors="0">
4+
<testcase name="testBoth" time="0.025" classname="com.bj58.argo.ArgoExceptionTest"/>
5+
<testcase name="testCause" time="0.0010" classname="com.bj58.argo.ArgoExceptionTest"/>
6+
<testcase name="testContext" time="0.0010" classname="com.bj58.argo.ArgoExceptionTest"/>
7+
<testcase name="testMessage" time="0.0010" classname="com.bj58.argo.ArgoExceptionTest"/>
8+
<testcase name="testInit" time="0.0010" classname="com.bj58.argo.ArgoFilterTest"/>
9+
<testcase name="testAnnotation" time="0.0010" classname="com.bj58.argo.learn.ClassTest"/>
10+
<testcase name="testField" time="0.0020" classname="com.bj58.argo.learn.ClassTest"/>
11+
<testcase name="test" time="0.0050" classname="learn.ExceptionTest"/>
12+
<testcase name="testContain" time="0.0020" classname="com.bj58.argo.learn.FileTest"/>
13+
<testcase name="testMore" time="0.0010" classname="com.bj58.argo.utils.OnlyOnceConditionTest"/>
14+
<testcase name="testOnlyOnce" time="0.0010" classname="com.bj58.argo.utils.OnlyOnceConditionTest"/>
15+
<testcase name="test" time="0.0090" classname="com.bj58.argo.route.PathMatcherTest"/>
16+
<testcase name="testPathMatch" time="0.0010" classname="com.bj58.argo.route.PathMatcherTest"/>
17+
<testcase name="testCombine" time="0.0010" classname="com.bj58.argo.utils.PathUtilsTest"/>
18+
<testcase name="testContains" time="0.0010" classname="com.bj58.argo.utils.PathUtilsTest"/>
19+
<testcase name="testConventPath" time="0.0020" classname="com.bj58.argo.utils.PathUtilsTest"/>
20+
<testcase name="testRelativePath" time="0.0010" classname="com.bj58.argo.utils.PathUtilsTest"/>
21+
<testcase name="testSimplyPath" time="0.0020" classname="com.bj58.argo.utils.PathUtilsTest"/>
22+
<testcase name="testSimplyWithoutPrefix" time="0.0010" classname="com.bj58.argo.utils.PathUtilsTest"/>
23+
</testsuite> <!-- Command line test -->
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<testsuite failures="0" time="0.061" errors="0" skipped="0" tests="19" name="TestSuite">
3+
<properties>
4+
<property name="java.runtime.name" value="Java(TM) SE Runtime Environment"/>
5+
<property name="sun.boot.library.path" value="C:\Program Files\Java\jdk1.6.0_31\jre\bin"/>
6+
<property name="java.vm.version" value="20.6-b01"/>
7+
<property name="java.vm.vendor" value="Sun Microsystems Inc."/>
8+
<property name="java.vendor.url" value="http://java.sun.com/"/>
9+
<property name="path.separator" value=";"/>
10+
<property name="guice.disable.misplaced.annotation.check" value="true"/>
11+
<property name="java.vm.name" value="Java HotSpot(TM) 64-Bit Server VM"/>
12+
<property name="file.encoding.pkg" value="sun.io"/>
13+
<property name="user.country" value="CN"/>
14+
<property name="sun.java.launcher" value="SUN_STANDARD"/>
15+
<property name="sun.os.patch.level" value=""/>
16+
<property name="java.vm.specification.name" value="Java Virtual Machine Specification"/>
17+
<property name="user.dir" value="D:\work\workspace\GitHub\Argo\core"/>
18+
<property name="java.runtime.version" value="1.6.0_31-b05"/>
19+
<property name="java.awt.graphicsenv" value="sun.awt.Win32GraphicsEnvironment"/>
20+
<property name="java.endorsed.dirs" value="C:\Program Files\Java\jdk1.6.0_31\jre\lib\endorsed"/>
21+
<property name="os.arch" value="amd64"/>
22+
<property name="java.io.tmpdir" value="C:\Users\liuzw\AppData\Local\Temp\"/>
23+
<property name="line.separator" value="
24+
"/>
25+
<property name="java.vm.specification.vendor" value="Sun Microsystems Inc."/>
26+
<property name="user.variant" value=""/>
27+
<property name="os.name" value="Windows 7"/>
28+
<property name="classworlds.conf" value="D:\work\workspace\argo\.metadata\.plugins\org.eclipse.m2e.core\launches\m2conf8088328570362278026.tmp"/>
29+
<property name="sun.jnu.encoding" value="GBK"/>
30+
<property name="java.library.path" value="C:\Program Files\Java\jdk1.6.0_31\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Python27\;C:\Python27\Scripts;C:\Program Files\Broadcom\Broadcom 802.11 Network Adapter;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Java\jdk1.6.0_31\bin;C:\Users\liuzw\AppData\Roaming\Python\Scripts;C:\Program Files (x86)\OpenVPN\bin;C:\Program Files\Java\jdk1.6.0_31\bin;."/>
31+
<property name="java.specification.name" value="Java Platform API Specification"/>
32+
<property name="java.class.version" value="50.0"/>
33+
<property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/>
34+
<property name="os.version" value="6.1"/>
35+
<property name="user.home" value="C:\Users\liuzw"/>
36+
<property name="user.timezone" value="Asia/Shanghai"/>
37+
<property name="java.awt.printerjob" value="sun.awt.windows.WPrinterJob"/>
38+
<property name="file.encoding" value="UTF-8"/>
39+
<property name="java.specification.version" value="1.6"/>
40+
<property name="user.name" value="liuzw"/>
41+
<property name="java.class.path" value="/D:/work/eclipse-java-juno-SR1-win32-x86_64/eclipse/configuration/org.eclipse.osgi/bundles/237/1/.cp/jars/plexus-classworlds-2.4.jar"/>
42+
<property name="java.vm.specification.version" value="1.0"/>
43+
<property name="sun.arch.data.model" value="64"/>
44+
<property name="java.home" value="C:\Program Files\Java\jdk1.6.0_31\jre"/>
45+
<property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher -B -s C:\Users\liuzw\.m2\settings.xml package"/>
46+
<property name="java.specification.vendor" value="Sun Microsystems Inc."/>
47+
<property name="user.language" value="zh"/>
48+
<property name="awt.toolkit" value="sun.awt.windows.WToolkit"/>
49+
<property name="java.vm.info" value="mixed mode"/>
50+
<property name="java.version" value="1.6.0_31"/>
51+
<property name="java.ext.dirs" value="C:\Program Files\Java\jdk1.6.0_31\jre\lib\ext;C:\Windows\Sun\Java\lib\ext"/>
52+
<property name="sun.boot.class.path" value="C:\Program Files\Java\jdk1.6.0_31\jre\lib\resources.jar;C:\Program Files\Java\jdk1.6.0_31\jre\lib\rt.jar;C:\Program Files\Java\jdk1.6.0_31\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.6.0_31\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.6.0_31\jre\lib\jce.jar;C:\Program Files\Java\jdk1.6.0_31\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.6.0_31\jre\lib\modules\jdk.boot.jar;C:\Program Files\Java\jdk1.6.0_31\jre\classes"/>
53+
<property name="java.vendor" value="Sun Microsystems Inc."/>
54+
<property name="maven.home" value="D:\work\workspace\GitHub\Argo\core\EMBEDDED"/>
55+
<property name="file.separator" value="\"/>
56+
<property name="java.vendor.url.bug" value="http://java.sun.com/cgi-bin/bugreport.cgi"/>
57+
<property name="sun.cpu.endian" value="little"/>
58+
<property name="sun.io.unicode.encoding" value="UnicodeLittle"/>
59+
<property name="sun.desktop" value="windows"/>
60+
<property name="sun.cpu.isalist" value="amd64"/>
61+
</properties>
62+
<testcase time="0.026" classname="com.bj58.argo.ArgoExceptionTest" name="testBoth"/>
63+
<testcase time="0" classname="com.bj58.argo.ArgoExceptionTest" name="testCause"/>
64+
<testcase time="0" classname="com.bj58.argo.ArgoExceptionTest" name="testContext"/>
65+
<testcase time="0" classname="com.bj58.argo.ArgoExceptionTest" name="testMessage"/>
66+
<testcase time="0" classname="com.bj58.argo.ArgoFilterTest" name="testInit"/>
67+
<testcase time="0.001" classname="com.bj58.argo.learn.ClassTest" name="testAnnotation"/>
68+
<testcase time="0.002" classname="com.bj58.argo.learn.ClassTest" name="testField"/>
69+
<testcase time="0.004" classname="learn.ExceptionTest" name="test"/>
70+
<testcase time="0.002" classname="com.bj58.argo.learn.FileTest" name="testContain"/>
71+
<testcase time="0.002" classname="com.bj58.argo.utils.OnlyOnceConditionTest" name="testMore"/>
72+
<testcase time="0" classname="com.bj58.argo.utils.OnlyOnceConditionTest" name="testOnlyOnce"/>
73+
<testcase time="0.01" classname="com.bj58.argo.route.PathMatcherTest" name="test"/>
74+
<testcase time="0.001" classname="com.bj58.argo.route.PathMatcherTest" name="testPathMatch"/>
75+
<testcase time="0.002" classname="com.bj58.argo.utils.PathUtilsTest" name="testCombine"/>
76+
<testcase time="0.004" classname="com.bj58.argo.utils.PathUtilsTest" name="testContains"/>
77+
<testcase time="0.002" classname="com.bj58.argo.utils.PathUtilsTest" name="testConventPath"/>
78+
<testcase time="0.001" classname="com.bj58.argo.utils.PathUtilsTest" name="testRelativePath"/>
79+
<testcase time="0.004" classname="com.bj58.argo.utils.PathUtilsTest" name="testSimplyPath"/>
80+
<testcase time="0" classname="com.bj58.argo.utils.PathUtilsTest" name="testSimplyWithoutPrefix"/>
81+
</testsuite>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
-------------------------------------------------------------------------------
2+
Test set: TestSuite
3+
-------------------------------------------------------------------------------
4+
Tests run: 19, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.988 sec
356 Bytes
Loading
157 Bytes
Loading

0 commit comments

Comments
 (0)