mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-11 22:01:07 +00:00
14 lines
335 B
Java
14 lines
335 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 TribufuClientTest {
|
|
@Test
|
|
void clientGetId() {
|
|
TribufuClient client = new TribufuClient(0, "client_secret");
|
|
assertEquals(0, client.getId());
|
|
}
|
|
}
|