All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wesleyhome.test.jupiter.provider.TestModel.kt Maven / Gradle / Ivy

Go to download

Library to help generate test parameter permutations for parameterized tests in JUnit. This version is an initial attempt to convert to building with Gradle.

There is a newer version: 3.0.0
Show newest version
package com.wesleyhome.test.jupiter.provider

import kotlin.reflect.KClass

data class TestModel(
    val name: String,
    val testParameters: List,
    val annotations: List = emptyList()
)

data class TestParameter(
    val name: String,
    val type: KClass<*>,
    val isNullable: Boolean = false,
    val annotations: List = emptyList()
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy