Skip to content

Commit

Permalink
import 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
Saerang committed Jan 4, 2022
1 parent 8ecb8b9 commit 882eaad
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.test.web.servlet.MockMvc;

import static org.mockito.ArgumentMatchers.isNotNull;
import static org.springframework.http.MediaType.APPLICATION_JSON;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.saerang.currencyconverter.app;

import com.saerang.currencyconverter.app.enumerate.CurrencyInfo;
import com.saerang.currencyconverter.common.BaseTest;
import com.saerang.currencyconverter.common.exception.CurrencyNotFoundException;
import org.junit.jupiter.api.Test;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,8 @@
package com.saerang.currencyconverter.app;

import com.saerang.currencyconverter.app.dto.CurrencyResponseDto;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;

import java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;

import static org.assertj.core.api.Assertions.assertThat;

@ExtendWith(MockitoExtension.class)
class DefaultExchangeRateServiceMockTest {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
package com.saerang.currencyconverter.common;

import com.saerang.currencyconverter.app.enumerate.CurrencyInfo;
import com.saerang.currencyconverter.domain.Currency;
import com.saerang.currencyconverter.domain.repository.CurrencyRepository;
import org.junit.jupiter.api.BeforeEach;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.transaction.annotation.Transactional;

Expand Down

0 comments on commit 882eaad

Please sign in to comment.