Download junit-quickcheck-core-0.6.1.jar file

Introduction

You can download junit-quickcheck-core-0.6.1.jar in this page.

License

Open Source

Type List

junit-quickcheck-core-0.6.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.pholser/junit-quickcheck-core/pom.properties
META-INF/maven/com.pholser/junit-quickcheck-core/pom.xml
META-INF/services/com.pholser.junit.quickcheck.generator.Generator
com.pholser.junit.quickcheck.ForAll.class
com.pholser.junit.quickcheck.From.class
com.pholser.junit.quickcheck.Produced.class
com.pholser.junit.quickcheck.Property.class
com.pholser.junit.quickcheck.When.class
com.pholser.junit.quickcheck.generator.ComponentizedGenerator.class
com.pholser.junit.quickcheck.generator.Ctor.class
com.pholser.junit.quickcheck.generator.Fields.class
com.pholser.junit.quickcheck.generator.GenerationStatus.class
com.pholser.junit.quickcheck.generator.Generator.class
com.pholser.junit.quickcheck.generator.GeneratorConfiguration.class
com.pholser.junit.quickcheck.generator.GeneratorConfigurationException.class
com.pholser.junit.quickcheck.generator.Lambdas.class
com.pholser.junit.quickcheck.generator.Shrink.class
com.pholser.junit.quickcheck.generator.Size.class
com.pholser.junit.quickcheck.generator.ValuesOf.class
com.pholser.junit.quickcheck.internal.GeometricDistribution.class
com.pholser.junit.quickcheck.internal.Items.class
com.pholser.junit.quickcheck.internal.Lists.class
com.pholser.junit.quickcheck.internal.ParameterContext.class
com.pholser.junit.quickcheck.internal.ParameterTypeContext.class
com.pholser.junit.quickcheck.internal.PropertyParameterContext.class
com.pholser.junit.quickcheck.internal.RandomValueSupplier.class
com.pholser.junit.quickcheck.internal.Ranges.class
com.pholser.junit.quickcheck.internal.Reflection.class
com.pholser.junit.quickcheck.internal.ReflectionException.class
com.pholser.junit.quickcheck.internal.SampleSizer.class
com.pholser.junit.quickcheck.internal.Sequences.class
com.pholser.junit.quickcheck.internal.ShrinkControl.class
com.pholser.junit.quickcheck.internal.Weighted.class
com.pholser.junit.quickcheck.internal.Zilch.class
com.pholser.junit.quickcheck.internal.constraint.ConstraintEvaluator.class
com.pholser.junit.quickcheck.internal.generator.AbstractGenerationStatus.class
com.pholser.junit.quickcheck.internal.generator.ArrayGenerator.class
com.pholser.junit.quickcheck.internal.generator.CompositeGenerator.class
com.pholser.junit.quickcheck.internal.generator.EnumGenerator.class
com.pholser.junit.quickcheck.internal.generator.GenerationContext.class
com.pholser.junit.quickcheck.internal.generator.GeneratorRepository.class
com.pholser.junit.quickcheck.internal.generator.LambdaGenerator.class
com.pholser.junit.quickcheck.internal.generator.PropertyParameterGenerationContext.class
com.pholser.junit.quickcheck.internal.generator.RandomTheoryParameterGenerator.class
com.pholser.junit.quickcheck.internal.generator.ServiceLoaderGeneratorSource.class
com.pholser.junit.quickcheck.internal.generator.SimpleGenerationStatus.class
com.pholser.junit.quickcheck.internal.generator.ZilchGenerator.class
com.pholser.junit.quickcheck.random.SourceOfRandomness.class
com.pholser.junit.quickcheck.runner.JUnitQuickcheck.class
com.pholser.junit.quickcheck.runner.PropertyStatement.class
com.pholser.junit.quickcheck.runner.PropertyVerifier.class
com.pholser.junit.quickcheck.runner.ShrinkNode.class
com.pholser.junit.quickcheck.runner.Shrinker.class

Pom

junit-quickcheck-core-0.6.1.pom file content.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>com.pholser</groupId>
        <artifactId>junit-quickcheck</artifactId>
        <version>0.6.1</version>
    </parent>

    <artifactId>junit-quickcheck-core</artifactId>
    <version>0.6.1</version>
    <packaging>jar</packaging>
    <name>junit-quickcheck-core</name>
    <description>Property-based testing, JUnit-style: core functionality</description>
    <url>http://github.com/pholser/junit-quickcheck</url>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
        <dependency>
            <groupId>org.junit.contrib</groupId>
            <artifactId>junit-theories</artifactId>
            <version>5.0-alpha-3</version>
        </dependency>
        <dependency>
            <groupId>org.javaruntype</groupId>
            <artifactId>javaruntype</artifactId>
            <version>1.2</version>
        </dependency>
        <dependency>
            <groupId>ognl</groupId>
            <artifactId>ognl</artifactId>
            <version>3.1.2</version>
        </dependency>
        <dependency>
            <groupId>ru.vyarus</groupId>
            <artifactId>generics-resolver</artifactId>
            <version>2.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>

        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-core</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-library</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-checkstyle-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-pmd-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>findbugs-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>com.pholser</groupId>
   <artifactId>junit-quickcheck-core</artifactId>
   <version>0.6.1</version>
</dependency>

Download

If you think the following junit-quickcheck-core-0.6.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download junit-quickcheck-core-0.6.1.jar file




PreviousNext

Related