mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-09 00:59:39 +02:00
Add Integration Test Framework
and resurrect a few integration tests.
This commit is contained in:
parent
4e6fbe7293
commit
b8f046706b
34 changed files with 2333 additions and 100 deletions
21
smack-integration-test/build.gradle
Normal file
21
smack-integration-test/build.gradle
Normal file
|
@ -0,0 +1,21 @@
|
|||
apply plugin: 'application'
|
||||
|
||||
description = """\
|
||||
Smack integration tests."""
|
||||
|
||||
mainClassName = 'org.igniterealtime.smack.inttest.SmackIntegrationTestFramework'
|
||||
|
||||
dependencies {
|
||||
compile project(':smack-java7')
|
||||
compile project(':smack-tcp')
|
||||
compile project(':smack-extensions')
|
||||
compile 'org.reflections:reflections:0.9.9-RC1'
|
||||
compile 'eu.geekplace.javapinning:java-pinning-jar:1.0.1'
|
||||
compile "junit:junit:$junitVersion"
|
||||
testCompile "org.jxmpp:jxmpp-jid:$jxmppVersion:tests"
|
||||
}
|
||||
|
||||
run {
|
||||
// Pass all system properties down to the "application" run
|
||||
systemProperties System.getProperties()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue