fileNameWithoutExtension

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.

Return

an Expect for the subject of this expectation.

Since

0.12.0

Samples

val dir = tempDir.newDirectory("test_dir")

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

fails {
    expect(dir) fileNameWithoutExtension {  // subject inside this expectation-group 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
    }
}

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.

Return

The newly created Expect for the extracted feature.

Since

0.12.0

Samples

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")
}