반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- AbsDistinct 풀이
- java
- mkdirs
- Collectors.toMap
- flow chart
- high level client
- ES Query
- es
- low level client
- Elastic Stack
- ElasticSearch
- Draw.IO
- collect
- AbsDistinct java
- java set
- ELK
- 5amsung
- codility
- Warnings
- AbsDistinct
- urllib3
- intervals
- es test data
- mkdir
- analyze api
- 코딩테스트
- draw.io down
- https warning
- 카드모으기 자바
- elasticsearch java
Archives
- Today
- Total
5AMSUNG
[TEST]ReflectionTestUtils 본문
반응형
ReflectionTestUtils??
ReflectionTestUtils 는 Spring Test Context 프레임워크의 일부입니다. 이는 단위에서 사용되는 리플렉션 기반 유틸리티 메서드의 모음이며, 비공개 필드를 설정하고 비공개 메서드를 호출하고 의존성을 주입하기 위한 통합 테스트 시나리오
import org.springframework.test.util.ReflectionTestUtils;
@Test
public void test_weightLogic_getPriceWeight(){
assertEquals(
ReflectionTestUtils.invokeMethod( new Weight(), "getPriceWeight", 5600L), (Double)1.49);
}
@Test
public void test_weightLogic_getStoreTypeWeight_hyper_nor(){
assertEquals(
ReflectionTestUtils.invokeMethod( new Weight(), "getStoreTypeWeight", StoreType.HYPER.name(), StoreKind.NOR.name()), (Double)1.0);
}
반응형
'Java' 카테고리의 다른 글
[groom] 카드모으기 (0) | 2023.05.10 |
---|---|
[java] 쓰레드 세이프(Thread Safe) (0) | 2023.05.08 |
[java] File (0) | 2023.03.18 |
[JPA] UNIQUE 설정 (0) | 2023.03.08 |
[java]mkdir()과 mkdirs() (0) | 2023.03.05 |