kotest

Kotlin

[kotlin] kotest styles에 대해서

Kotest는 10가지의 다양한 스타일의 테스트 레이아웃을 제공합니다. 일부는 다른 인기 있는 테스트 프레임워크에서 영감을 받았습니다.1. Fun specinspired by scala testtest라는 함수를 호출하여 테스트를 실행한다.함수의 인자로 해당 테스트를 설명하는 문자열을 넘긴다.context 및 xtest를 사용하여 테스트를 비활성화할 수 있습니다.class MyTests : FunSpec({ test("String length should return the length of the string") { "sammy".length shouldBe 5 "".length shouldBe 0 } context("this outer ..

향찡
'kotest' 태그의 글 목록