Skip to content

Commit

Permalink
adding unit tests for REST API
Browse files Browse the repository at this point in the history
A number of unit tests were still sitting in the work queue to be moved to
open-source including all of the REST API tests.  This change set shows the
build changes and AgentUtil changes needed to accomodate the new tests but
does not show the new tests.  The tests are being added to the
geode-assembly project, and all of the support classes in geode-core's
com.gemstone.gemfire.rest.internal.web.controllers package are being moved
to that project.

The tests will not run in Eclipse since a WAR file is not being created by
the Eclipse projects.  I've opened a JIRA ticket about that.
  • Loading branch information
bschuchardt committed Feb 25, 2016
1 parent 5f98f31 commit 9b55879
Show file tree
Hide file tree
Showing 24 changed files with 4,991 additions and 0 deletions.
3 changes: 3 additions & 0 deletions geode-assembly/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ dependencies {
testCompile project(':geode-junit')
testCompile project(path: ':geode-core', configuration: 'testOutput')

testCompile 'org.apache.httpcomponents:httpclient:' + project.'httpclient.version'
testCompile 'org.apache.httpcomponents:httpcore:' + project.'httpcore.version'

testRuntime files("${System.getProperty('java.home')}/../lib/tools.jar")
}

Expand Down
Loading

0 comments on commit 9b55879

Please sign in to comment.