From a2bc4ac75267aada9a51bc7bc1459a2b41179ece Mon Sep 17 00:00:00 2001 From: AntonButov <58133570+AntonButov@users.noreply.github.com> Date: Wed, 19 Mar 2025 22:31:34 +0300 Subject: [PATCH] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index bca4da1..c18db03 100644 --- a/README.md +++ b/README.md @@ -30,4 +30,11 @@ implementation("com.github.antonbutov:compilation:<$last-version>") assertTrue { true } } } + + @Test + fun `correct file should compile`() { + File("src/test/kotlin/FilesForTests/CorrectFile.kt") compile { + assertTrue { true } + } + } ```