Role | 31 |Account | 32 |
---|---|
35 | | 36 | |
Role Assignee | 43 |State | 44 |Role | 45 |
---|---|---|
48 | | 49 | | 50 | |
Login with linkedIn to generate access token here
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /server/src/test/java/com/example/api/MainApplicationTest.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Test cases for Java Sample Application. 3 | */ 4 | 5 | package com.example.api; 6 | 7 | import static org.assertj.core.api.Assertions.assertThat; 8 | 9 | import org.junit.jupiter.api.Test; 10 | 11 | import org.springframework.beans.factory.annotation.Autowired; 12 | import org.springframework.boot.test.context.SpringBootTest; 13 | import org.springframework.web.client.RestTemplate; 14 | 15 | 16 | @SpringBootTest 17 | public class MainApplicationTest { 18 | 19 | @Autowired 20 | private RestTemplate restTemplate; 21 | 22 | @Test 23 | public void contextLoads() { 24 | assertThat(restTemplate).isNotNull(); 25 | } 26 | 27 | } 28 | 29 | --------------------------------------------------------------------------------