NFTServiceTest.java 649 B

123456789101112131415161718192021222324252627
  1. package com.izouma.nineth.service;
  2. import com.izouma.nineth.ApplicationTests;
  3. import org.apache.commons.lang3.RandomStringUtils;
  4. import org.junit.Test;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import static org.junit.Assert.*;
  7. public class NFTServiceTest extends ApplicationTests {
  8. @Autowired
  9. private NFTService nftService;
  10. @Test
  11. public void createAccount() {
  12. nftService.createAccount(RandomStringUtils.randomAlphabetic(8));
  13. }
  14. @Test
  15. public void createToken() throws Exception {
  16. nftService.createToken("9th_BHlKkGWw");
  17. }
  18. @Test
  19. public void testCreateToken() {
  20. }
  21. }