apimock :: parent

parent project for apimock

License

License

GroupId

GroupId

me.geso.apimock
ArtifactId

ArtifactId

apimock-project
Last Version

Last Version

0.6.1
Release Date

Release Date

Type

Type

pom
Description

Description

apimock :: parent
parent project for apimock
Project URL

Project URL

http://github.com/tokuhirom/apimock
Source Code Management

Source Code Management

https://github.com/tokuhirom/apimock/

Download apimock-project

How to add to project

<!-- https://jarcasting.com/artifacts/me.geso.apimock/apimock-project/ -->
<dependency>
    <groupId>me.geso.apimock</groupId>
    <artifactId>apimock-project</artifactId>
    <version>0.6.1</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/me.geso.apimock/apimock-project/
implementation 'me.geso.apimock:apimock-project:0.6.1'
// https://jarcasting.com/artifacts/me.geso.apimock/apimock-project/
implementation ("me.geso.apimock:apimock-project:0.6.1")
'me.geso.apimock:apimock-project:pom:0.6.1'
<dependency org="me.geso.apimock" name="apimock-project" rev="0.6.1">
  <artifact name="apimock-project" type="pom" />
</dependency>
@Grapes(
@Grab(group='me.geso.apimock', module='apimock-project', version='0.6.1')
)
libraryDependencies += "me.geso.apimock" % "apimock-project" % "0.6.1"
[me.geso.apimock/apimock-project "0.6.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • apimock-tomcat
  • apimock-core
  • apimock-jetty

apimock

javadoc.io

JSON API mock server utilities for Java.

MOTIVATION

I need to write the JSON API mock server fast!

SYNOPSIS

// Create new mock server instance.
	try (APIMockTomcat mock = new APIMockTomcat()) {
  // Register the end point.
		mock.get("/", c -> Collections.emptyMap());
  // Start server instance.
		mock.start();
  // Get the endpoint URI.
		URI uri = mock.getURI();

  // Your test code here.
		HttpResponse resp = Request.Get(uri.resolve("/"))
				.execute()
				.returnResponse();
		assertEquals(200, resp.getStatusLine().getStatusCode());
		assertEquals("{}", EntityUtils.toString(resp.getEntity()));
	}

Javadoc

LICENSE

The MIT License (MIT)
Copyright © 2015 Tokuhiro Matsuno, http://64p.org/ <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Versions

Version
0.6.1
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
0.0.1