Added AccurestObjectMapper

This commit is contained in:
Marcin Grzejszczak
2016-04-25 12:40:51 +02:00
parent f1a7975bce
commit 941a7bd30c
13 changed files with 76 additions and 71 deletions

View File

@@ -1,4 +1,4 @@
:messaging_version: 1.0.7
:messaging_version: 1.1.0
= Accurest

View File

@@ -93,7 +93,7 @@ accurest {
- **imports** - array with imports that should be included in generated tests (for example ['org.myorg.Matchers']). By default empty array []
- **staticImports** - array with static imports that should be included in generated tests(for example ['org.myorg.Matchers.*']). By default empty array []
- **basePackageForTests** - specifies base package for all generated tests. By default set to io.codearte.accurest.tests
- **baseClassForTests** - base class for generated tests. By default `spock.lang.Specification`
- **baseClassForTests** - base class for generated tests. By default `spock.lang.Specification` if using Spock tests.
- **ruleClassForTests** - specifies Rule which should be added to generated test classes.
- **ignoredFiles** - Ant matcher allowing defining stub files for which processing should be skipped. By default empty array []
- **contractsDslDir** - directory containing contracts written using the GroovyDSL. By default `$rootDir/src/test/accurest`
@@ -237,7 +237,7 @@ To change default configuration just add `configuration` section to plugin defin
- **testMode** - defines mode for acceptance tests. By default `MockMvc` which is based on Spring's MockMvc. It can also be changed to `JaxRsClient` or to `Explicit` for real HTTP calls.
- **basePackageForTests** - specifies base package for all generated tests. By default set to `io.codearte.accurest.tests`.
- **ruleClassForTests** - specifies Rule which should be added to generated test classes.
- **baseClassForTests** - base class for generated tests. By default `spock.lang.Specification`.
- **baseClassForTests** - base class for generated tests. By default `spock.lang.Specification` if using Spock tests.
- **contractsDir** - directory containing contracts written using the GroovyDSL. By default `/src/test/accurest`.
- **testFramework** - the target test framework to be used; currently Spock and JUnit are supported with Spock being the default framework