doc / ch.tutteli.atrium.api.infix.en_GB / fileNameWithoutExtension

fileNameWithoutExtension

val <T : Path> Expect<T>.fileNameWithoutExtension: Expect<String> (source)

Creates an Expect for the property Path.fileNameWithoutExtension (provided via niok) of the subject of this expectation, so that further fluent calls are assertions about it.

val dir = tempDir.newDirectory("test_dir")

expect(dir).fileNameWithoutExtension notToBe empty toEqual "test_dir"

fails {
    expect(dir).fileNameWithoutExtension toBe empty notToEqual "test_dir"
    //            |                        |          | not reported toBeEmpty already fails
    //            |                        |          | use `.fileNameWithoutExtension { ... }` if you want that all expectations are evaluated
    //            |                        | fails because string is not empty
    //            | subject is now of type String (actually "test_dir")
}

Return
The newly created Expect for the extracted feature.

Since
0.12.0

infix fun <T : Path> Expect<T>.fileNameWithoutExtension(assertionCreator: Expect<String>.() -> Unit): Expect<T> (source)

Expects that the property Path.fileNameWithoutExtension (provided via niok) of the subject of this expectation holds all assertions the given assertionCreator creates for it and returns an Expect for the current subject of this expectation.

val dir = tempDir.newDirectory("test_dir")

expect(dir) fileNameWithoutExtension { // subject inside this block is of type String (actually "test_dir")
    it notToBe empty
    it toEqual "test_dir"
}

fails {
    expect(dir) fileNameWithoutExtension {  // subject inside this block is of type String (actually "test_dir")
        it toBe empty                       // fails because string is not empty
        it notToEqual "test_dir"            // still evaluated even though `toBeEmpty()` already fails
        //                                     use `.fileNameWithoutExtension` if you want a fail fast behaviour
    }
}

Return
an Expect for the subject of this expectation.

Since
0.12.0