2 * SPDX-FileCopyrightText: The reguloj Authors
3 * SPDX-License-Identifier: 0BSD
5 package wtf
.metio
.reguloj
;
7 import org
.junit
.jupiter
.api
.Test
;
9 import static org
.junit
.jupiter
.api
.Assertions
.assertEquals
;
11 class ContextRecordTest
{
14 void shouldHaveTopic() {
16 final var context
= new SimpleContext
<>("test");
19 final var topic
= context
.topic();
22 assertEquals("test", topic
);