| 1234567891011121314151617181920212223 |
- package com.izouma.nineth.service;
- import com.izouma.nineth.ApplicationTests;
- import org.apache.commons.lang3.RandomStringUtils;
- import org.junit.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import static org.junit.Assert.*;
- public class NFTServiceTest extends ApplicationTests {
- @Autowired
- private NFTService nftService;
- @Test
- public void createAccount() {
- nftService.createAccount(RandomStringUtils.randomAlphabetic(8));
- }
- @Test
- public void createToken() throws Exception {
- nftService.createToken("9th_test");
- }
- }
|