Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bigsys
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bigsys
Commits
6209aef4
Commit
6209aef4
authored
Aug 15, 2017
by
fangzhipeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
改动代码依赖
parent
9170d297
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
210 additions
and
0 deletions
+210
-0
dubbo/src/main/java/com/paul/App.java
dubbo/src/main/java/com/paul/App.java
+13
-0
dubbo/src/test/java/com/paul/AppTest.java
dubbo/src/test/java/com/paul/AppTest.java
+38
-0
shiro/src/main/java/com/paul/App.java
shiro/src/main/java/com/paul/App.java
+13
-0
shiro/src/test/java/com/paul/AppTest.java
shiro/src/test/java/com/paul/AppTest.java
+38
-0
spring/src/main/java/com/paul/App.java
spring/src/main/java/com/paul/App.java
+13
-0
spring/src/test/java/com/paul/AppTest.java
spring/src/test/java/com/paul/AppTest.java
+38
-0
user/pom.xml
user/pom.xml
+6
-0
user/src/main/java/com/paul/App.java
user/src/main/java/com/paul/App.java
+13
-0
user/src/test/java/com/paul/AppTest.java
user/src/test/java/com/paul/AppTest.java
+38
-0
No files found.
dubbo/src/main/java/com/paul/App.java
0 → 100644
View file @
6209aef4
package
com
.
paul
;
/**
* Hello world!
*
*/
public
class
App
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
"Hello World!"
);
}
}
dubbo/src/test/java/com/paul/AppTest.java
0 → 100644
View file @
6209aef4
package
com
.
paul
;
import
junit.framework.Test
;
import
junit.framework.TestCase
;
import
junit.framework.TestSuite
;
/**
* Unit test for simple App.
*/
public
class
AppTest
extends
TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public
AppTest
(
String
testName
)
{
super
(
testName
);
}
/**
* @return the suite of tests being tested
*/
public
static
Test
suite
()
{
return
new
TestSuite
(
AppTest
.
class
);
}
/**
* Rigourous Test :-)
*/
public
void
testApp
()
{
assertTrue
(
true
);
}
}
shiro/src/main/java/com/paul/App.java
0 → 100644
View file @
6209aef4
package
com
.
paul
;
/**
* Hello world!
*
*/
public
class
App
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
"Hello World!"
);
}
}
shiro/src/test/java/com/paul/AppTest.java
0 → 100644
View file @
6209aef4
package
com
.
paul
;
import
junit.framework.Test
;
import
junit.framework.TestCase
;
import
junit.framework.TestSuite
;
/**
* Unit test for simple App.
*/
public
class
AppTest
extends
TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public
AppTest
(
String
testName
)
{
super
(
testName
);
}
/**
* @return the suite of tests being tested
*/
public
static
Test
suite
()
{
return
new
TestSuite
(
AppTest
.
class
);
}
/**
* Rigourous Test :-)
*/
public
void
testApp
()
{
assertTrue
(
true
);
}
}
spring/src/main/java/com/paul/App.java
0 → 100644
View file @
6209aef4
package
com
.
paul
;
/**
* Hello world!
*
*/
public
class
App
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
"Hello World!"
);
}
}
spring/src/test/java/com/paul/AppTest.java
0 → 100644
View file @
6209aef4
package
com
.
paul
;
import
junit.framework.Test
;
import
junit.framework.TestCase
;
import
junit.framework.TestSuite
;
/**
* Unit test for simple App.
*/
public
class
AppTest
extends
TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public
AppTest
(
String
testName
)
{
super
(
testName
);
}
/**
* @return the suite of tests being tested
*/
public
static
Test
suite
()
{
return
new
TestSuite
(
AppTest
.
class
);
}
/**
* Rigourous Test :-)
*/
public
void
testApp
()
{
assertTrue
(
true
);
}
}
user/pom.xml
View file @
6209aef4
...
...
@@ -21,6 +21,12 @@
</properties>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
3.8.1
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
...
...
user/src/main/java/com/paul/App.java
0 → 100644
View file @
6209aef4
package
com
.
paul
;
/**
* Hello world!
*
*/
public
class
App
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
"Hello World!"
);
}
}
user/src/test/java/com/paul/AppTest.java
0 → 100644
View file @
6209aef4
package
com
.
paul
;
import
junit.framework.Test
;
import
junit.framework.TestCase
;
import
junit.framework.TestSuite
;
/**
* Unit test for simple App.
*/
public
class
AppTest
extends
TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public
AppTest
(
String
testName
)
{
super
(
testName
);
}
/**
* @return the suite of tests being tested
*/
public
static
Test
suite
()
{
return
new
TestSuite
(
AppTest
.
class
);
}
/**
* Rigourous Test :-)
*/
public
void
testApp
()
{
assertTrue
(
true
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment