sqtf-core

A lightweight testing framework

License

License

GroupId

GroupId

com.github.bradleywood
ArtifactId

ArtifactId

sqtf-core
Last Version

Last Version

1.1
Release Date

Release Date

Type

Type

jar
Description

Description

sqtf-core
A lightweight testing framework
Project URL

Project URL

https://github.com/BradleyWood/Software-Quality-Test-Framework
Source Code Management

Source Code Management

https://github.com/BradleyWood/Software-Quality-Test-Framework

Download sqtf-core

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.bradleywood/sqtf-core/ -->
<dependency>
    <groupId>com.github.bradleywood</groupId>
    <artifactId>sqtf-core</artifactId>
    <version>1.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.bradleywood/sqtf-core/
implementation 'com.github.bradleywood:sqtf-core:1.1'
// https://jarcasting.com/artifacts/com.github.bradleywood/sqtf-core/
implementation ("com.github.bradleywood:sqtf-core:1.1")
'com.github.bradleywood:sqtf-core:jar:1.1'
<dependency org="com.github.bradleywood" name="sqtf-core" rev="1.1">
  <artifact name="sqtf-core" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.bradleywood', module='sqtf-core', version='1.1')
)
libraryDependencies += "com.github.bradleywood" % "sqtf-core" % "1.1"
[com.github.bradleywood/sqtf-core "1.1"]

Dependencies

compile (3)

Group / Artifact Type Version
org.apache.commons : commons-csv jar 1.5
com.google.code.gson : gson jar 2.8.5
org.jetbrains : annotations jar 15.0

test (1)

Group / Artifact Type Version
junit : junit jar 4.11

Project Modules

There are no modules declared in this project.

Software-Quality-Test-Framework

A lightweight software testing framework that can be integrated with maven projects.

How to define a test

Tests must be publicly accessible non-static methods with no arguments. Tests must also be marked with @Test (org.sqtf.annotation.Test) annotation.



@Test(expected = ArithmeticException.class)
public void divideByZeroTest() {
    int a = 5 / 0;
}



@Test annotation

The Test annotation has two optional parameters: expected and timeout. Expected denotes the expected exception type to be thrown and timeout is an integer value measured in milliseconds. Tests that fail to complete within the timeout will be terminated and marked as failure.

How it works

Tests are dynamically loaded based on the specified test class root. Reflection is used to find and invoke all test methods.

Running from the command-line

The first argument should always be a relative path to the test class root folder. The next argument is optional and denotes the output directory for the detailed test reports.

To view the results graphically run with

-display

Parameterized tests

Parameterized tests can be easily implemented and accept test data from various sources including methods and csv files. The test data is automatically converted to match the parameter types of the test. Data that cannot be converted to match the parameter types of the test will result in test failure.

Use test data from a CSV File

@Test
@Parameters(source = "testData/add_csv_data.csv")
public void parameterizedAdd(int a, int b, int expected) {
    Assert.assertEquals(expected, a + b);
}

Use test data from local static or instance methods

@Test
@Parameters(source = "dataGenerator")
public void parameterizedAdd(int a, int b, int expected) {
    Assert.assertEquals(expected, a + b);
}

public Collection dataGenerator() {
    List<Object[]> lst = new ArrayList<>();
    lst.add(Arrays.asList(0, 0, 0));
    lst.add(Arrays.asList(10, 20, 30));
    lst.add(Arrays.asList(100, 200, 300));
    return lst;
}

Use test data from a json file

[
  [
    {
      "name": "Brad"
    }
  ]
]

The data can automatically be converted to objects or primitive types.

class Person {
    String name;
}

@Test
@Parameters(source = "testData/json_object.json")
public void testAddJsonSource(Person obj) {
    Assert.assertNotNull(obj.name);
}

Maven integration

<dependency>
    <groupId>com.github.bradleywood</groupId>
    <artifactId>sqtf-core</artifactId>
    <version>1.1</version>
</dependency>

Configure the surefire plugin

<plugin>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.20.1</version>
    <dependencies>
        <dependency>
            <groupId>com.github.bradleywood</groupId>
            <artifactId>sqtf-provider</artifactId>
            <version>1.1</version>
        </dependency>
    </dependencies>
</plugin>

Versions

Version
1.1
1.0