mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-08 04:11:08 +00:00
14 lines
316 B
Java
14 lines
316 B
Java
// Copyright (c) Tribufu. All Rights Reserved
|
|
|
|
package com.tribufu;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
class TribufuBotTest {
|
|
@Test
|
|
void defaultApi() {
|
|
TribufuBot bot = new TribufuBot("0", "...");
|
|
assertEquals("0", bot.getBotId());
|
|
}
|
|
}
|