Add oauth2 client

This commit is contained in:
Guilherme Werner 2023-12-01 20:33:43 -03:00
parent 61c562b63d
commit 92ea35896f
12 changed files with 124 additions and 56 deletions

View file

@ -0,0 +1,14 @@
// Copyright (c) TribuFu. All Rights Reserved
package com.tribufu.sdk;
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());
}
}