2023. 6. 7. 16:37ใ๊ฐ๋ ์ ๋ฆฌ ์์ ์ค/๋ฌธ์ ์ ๋ฆฌ
"์ด ํฌ์คํ ์ ์ฟ ํก ํํธ๋์ค ํ๋์ ์ผํ์ผ๋ก, ์ด์ ๋ฐ๋ฅธ ์ผ์ ์ก์ ์์๋ฃ๋ฅผ ์ ๊ณต๋ฐ์ต๋๋ค."
๐ทโ๏ธ ์์ ์ค์ธ ๋ด์ฉ
์๋
ํ์ธ์?
ํ์ฌ ์ฃผ๋๋ Junit5์ ์ด์ฉํด์ Test Code๋ฅผ ์ง๊ณ ์์ด์.
๊ทธ๋ฐ๋ฐ, ์ฃผ์ ์ ๋ณด ์/๋ณตํธํํ๋ Logic์ด static์ผ๋ก ๋ง๋ค์ด์ ธ ์๊ณ , ์ด๋ฅผ ํ
์คํธ ํ๊ธฐ ์ํด์๋ ์์
์ ๋ช ๊ฐ์ง ํด์ค์ผ ํด์.
์ต์ด ์์ ๊ฐ์ด ๋ณ์๋ฅผ ์ ์ธํด ์ฃผ์ด์ผ ํด์.
๊ทธ๋ฐ ๋ค ์์ ๊ฐ์ด Test๊ฐ ์คํ๋๊ธฐ ์ ์ ํด๋น ๋ณ์๊ฐ ์ด๊ธฐํ ๋ ์ ์๋๋ก ํด์ฃผ์ด์ผ ํด์.
๋ง์ง๋ง์ผ๋ก ์์ ๊ฐ์ด Test๊ฐ ๋๋๋ฉด mockStatic์ด ๋ซํ ์ ์๋๋ก ์ฒ๋ฆฌํด ์ค์ผ ํด์.
๊ทธ๋ ์ง ์์ผ๋ฉด ํ Thread์์ staticMocking ๋ฑ๋ก์ ํ๋ฒ ๋ฐ์ ํ ์ ์์ด ๋๋ฌธ์ ์๋์ ๊ฐ์ ๋ฌธ์ ๋ฅผ ๋ง๋๊ฒ ๋ ๊ฑฐ์์.
โ ๏ธ ๋ฌธ์ ๋ฐ์!
์์ ๊ฐ์ด ์ค์ ํด ์ฃผ๊ณ , ํ
์คํธ๋ฅผ ์งํ ํ๋๋ฐ, ์๋์ ๊ฐ์ ๋ฌธ์ ๋ฅผ ๋ง๋๊ฒ ๋์์ด์.
org.mockito.exceptions.base.MockitoException:
The used MockMaker SubclassByteBuddyMockMaker does not support the creation of static mocks
Mockito's inline mock maker supports static mocks based on the Instrumentation API.
You can simply enable this mock mode, by placing the 'mockito-inline' artifact where you are currently using 'mockito-core'.
Note that Mockito's inline mock maker is not supported on Android.
๐ค ์์ธ ๋ถ์
์ด ๋ฌธ์ ๋ ํ์ํ ์์กด์ฑ์ ์ถ๊ฐํ์ง ์๊ณ , static Method๋ฅผ Mockingํ๋ ค๊ณ ํ๊ธฐ ๋๋ฌธ์ ๋ฐ์ํ ๋ฌธ์ ์์ด์.
๐ป ๋ฌธ์ ํด๊ฒฐ!
<Gradle>
// Test Code์์ Static Method ์ฌ์ฉ์ ์ํ ์์กด์ฑ ์ถ๊ฐ
testImplementation 'org.mockito:mockito-inline'
<Maven>
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-inline -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>4.6.1</version>
<scope>test</scope>
</dependency>
์ ์์กด์ฑ์ ์ถ๊ฐํด ์ฃผ๋ฉด ์ ์ ์๋ํ๋ ๊ฑธ ํ์ธํ ์ ์์ด์.
์์ ๊ฐ์ด ์ ์ฒ๋ฆฌ๋ ๊ฒ์ ํ์ธํ ์ ์์ด์.
๐ง ์ฐธ๊ณ ์๋ฃ
"์ด ํฌ์คํ ์ ์ฟ ํก ํํธ๋์ค ํ๋์ ์ผํ์ผ๋ก, ์ด์ ๋ฐ๋ฅธ ์ผ์ ์ก์ ์์๋ฃ๋ฅผ ์ ๊ณต๋ฐ์ต๋๋ค."