Tag: Test

0

Matcher any 여러 개일때와 null 있을 때

Test Code 작성시 Mocking을 위해서 Matcher 클래스는 유용하게 사용되는데. 파라미터가 여러 개 들어갈 경우. 실제 값과 any를 활용한 값이 섞여서 전달되면 정상적으로 Mocking이 되지 않는다. Matcher 클래스를 쓴다면 모든 파라미터 값을 Matcher 클래스의 형태로 제공되어야 한다. 두번째로 null 객체를 넣고 싶을 때에는

0

테스트 코드 작성시 stub 객체 생성에 대한 고찰

테스트 코드를 작성하다보면 서로 간에 의존성을 가지고 있어서 테스트를 하기 어려운 상황들을 직면하게 된다. 이를 해결했던 나의 경험들을 남겨두려고 한다. 이 글은 저자의 주관적인 생각이 포함되어 있음으로 맹목적인 신뢰는 지양하기 바란다. 외부 리소스 코드의 분리테스트하려는 코드가 의존성을 가지고 있어서 테스트하기가 어렵다면, 이를 개선하기 위한 첫번째 방법

0

Junit 예외 테스트하는 방법에 대한 고찰

테스트를 하게 되면 특정 예외를 발생시키는 코드에 대해서도 테스트를 해야할 경우가 있다. 예를 들면 파라미터 검증을 할 때 특정 값이 없다면 예외가 던져지는지 확인해야하고, 외부 연동을 하고 나서 응답 값이 비정상일 때에도 원하는 흐름대로 예외가 던져지는지 확인해야 한다. Junit을 활용하여 예외를 테스트하는 방법은 기본적으로 크게 어려운 것이 없어 단

0

Usage of JUnit when it's private method.

How to test the private method in junit.Actually you can’t access the methods declared private thing. so You have to use the another way to test the below code. 123456789101112131415public class Naver

0

Overview of the Test Code

Overview of the Test Code1. The purpose and significance of test code.You have to remember the thing that Your system always be processed the management of operational tasks.Actually, If you just thin

0

Mockito

1. Add the ‘mockito-all’ dependency to your build.gradle file1234567891011dependencies { ... testCompile group: 'org.mockito', name: 'mockito-all', version: '1.

0

Usage of JUnit Basic

How to Use Junit1. Calculator ExampleWe need two files for testing JUnit. One is Calculator.java and the other is CalculatorTest.java Let’s start to make the package and files for that. 1234> mkdir