net.serenitybdd.reports.configuration.IntReportProperty.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serenity-machinereadable-reports Show documentation
Show all versions of serenity-machinereadable-reports Show documentation
Serenity machine-readable reports
The newest version!
package net.serenitybdd.reports.configuration
import net.serenitybdd.core.environment.EnvironmentSpecificConfiguration
import net.thucydides.core.ThucydidesSystemProperty
import net.thucydides.core.util.EnvironmentVariables
class IntReportProperty(val property: String, val defaultValue: Int) : ReportProperty {
constructor(property: ThucydidesSystemProperty, defaultValue: Int) : this(property.toString(), defaultValue)
override fun configuredIn(environmentVariables: EnvironmentVariables) : Int {
//return environmentVariables.getPropertyAsInteger(property, defaultValue)
return EnvironmentSpecificConfiguration.from(environmentVariables)
.getOptionalProperty(property)
.map { value -> value.toInt() }
.orElse(defaultValue)
}
}