chore: Naming conventions

This commit is contained in:
Tibo De Peuter 2025-04-16 12:53:41 +02:00
parent 4a6850527f
commit bd5c825ca2
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
8 changed files with 8 additions and 10 deletions

View file

@ -9,7 +9,7 @@ import kotlin.test.assertEquals
*
* These tests are based on the Prolog syntax.
*/
class LexerScanPrologTest {
class ScanPrologTests {
@Test
fun scan_simple_atom() {
val tokens = Lexer("atom.").scan()

View file

@ -4,7 +4,7 @@ import org.junit.jupiter.api.Test
import org.junit.jupiter.api.assertThrows
import org.junit.jupiter.api.Assertions.*
class LexerScanTest {
class ScanTests {
@Test
fun scan_emptyString_returns_EOF() {
val tokens = Lexer("").scan()