Update parent to latest version
[reguloj.git] / src / test / java / wtf / metio / reguloj / ContextRecordTest.java
blob14ebfc1514f9e23e276e7b38d5eb1c0a0ac5c26e
1 /*
2 * SPDX-FileCopyrightText: The reguloj Authors
3 * SPDX-License-Identifier: 0BSD
4 */
5 package wtf.metio.reguloj;
7 import org.junit.jupiter.api.Test;
9 import static org.junit.jupiter.api.Assertions.assertEquals;
11 class ContextRecordTest {
13 @Test
14 void shouldHaveTopic() {
15 // given
16 final var context = new SimpleContext<>("test");
18 // when
19 final var topic = context.topic();
21 // then
22 assertEquals("test", topic);