Java Concurrency Testing Utilities

Classes for testing concurrent code.

License

License

GroupId

GroupId

com.pervasivecode
ArtifactId

ArtifactId

concurrent-testing-utils
Last Version

Last Version

1.0
Release Date

Release Date

Type

Type

jar
Description

Description

Java Concurrency Testing Utilities
Classes for testing concurrent code.
Project URL

Project URL

https://github.com/JamieFlournoy/java-concurrent-testing-utils
Source Code Management

Source Code Management

https://github.com/JamieFlournoy/java-concurrent-testing-utils

Download concurrent-testing-utils

How to add to project

<!-- https://jarcasting.com/artifacts/com.pervasivecode/concurrent-testing-utils/ -->
<dependency>
    <groupId>com.pervasivecode</groupId>
    <artifactId>concurrent-testing-utils</artifactId>
    <version>1.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.pervasivecode/concurrent-testing-utils/
implementation 'com.pervasivecode:concurrent-testing-utils:1.0'
// https://jarcasting.com/artifacts/com.pervasivecode/concurrent-testing-utils/
implementation ("com.pervasivecode:concurrent-testing-utils:1.0")
'com.pervasivecode:concurrent-testing-utils:jar:1.0'
<dependency org="com.pervasivecode" name="concurrent-testing-utils" rev="1.0">
  <artifact name="concurrent-testing-utils" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.pervasivecode', module='concurrent-testing-utils', version='1.0')
)
libraryDependencies += "com.pervasivecode" % "concurrent-testing-utils" % "1.0"
[com.pervasivecode/concurrent-testing-utils "1.0"]

Dependencies

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

Project Modules

There are no modules declared in this project.

Pervasive Code's Java Concurrent Testing Utilities

This library includes classes to help with testing concurrent code that uses Runnable, Callable, and Executor.

Overview of included classes

Javadocs are available on javadoc.io:

Javadocs

See the separate OVERVIEW.md file for a description of what interfaces and classes are included. (Overview content is taken from class Javadoc comments, so there's no need to read both.)

Including it in your project

Use groupId com.pervasivecode, name concurrent-testing-utils, version 1.0 in your build tool of choice.

Gradle Example

If you are using Gradle 4.x, put this in your build.properties file:

// in your build.gradle's repositories {} block:
    mavenCentral();

// in your build.gradle's dependencies {} block:
    implementation 'com.pervasivecode:concurrent-testing-utils:1.0'

    // or, if you prefer the separated group/name/version syntax:
    implementation group: 'com.pervasivecode', name: 'concurrent-testing-utils', version: '1.0'

Contributing

See DEVELOPERS.md and GRADLE_INTRO.md if you want to build and hack on the code yourself.

Copyright and License

Copyright © 2018 Jamie Flournoy.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Versions

Version
1.0
0.9.1
0.9.0