commonMain.com.bkahlert.kommons.test.fixtures.HtmlDocumentFixture.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kommons-test Show documentation
Show all versions of kommons-test Show documentation
Kommons Test is a Kotlin Multiplatform Library to ease testing.
package com.bkahlert.kommons.test.fixtures
/**
* An [TextResourceFixture] consisting of HTML code that
* renders the headline "Hello Headline!", and
* the paragraph "Hello World!"
* on a background of horizontal red and white stripes.
*/
public object HtmlDocumentFixture : TextResourceFixture(
"hello-world.html",
"text/html",
"""
Hello Title!
Hello Headline!
Hello World!
""".trimIndent()
)