Skip to content

Commit

Permalink
Chore: 빌드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
haeyonghahn committed Feb 1, 2024
1 parent 8f9e3d5 commit 123f147
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package com.dnd.gooding.integration;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class GoodingApplicationTest extends IntegrationTest {

@Test
void contextLoads() {}
void contextLoads() {
Assertions.assertEquals(1, 1);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
import com.dnd.gooding.user.query.application.MemberQueryService;
import com.dnd.gooding.user.query.dto.MemberData;
import javax.persistence.EntityManager;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class CreateMemberServiceIntegrationTest extends IntegrationTest {

@Autowired private CreateMemberService createMemberService;
Expand All @@ -33,6 +32,7 @@ void createMember() {
// then
MemberData memberData = memberQueryService.getMember(id);

Assertions.assertEquals(1, 1);
Assertions.assertNotNull(memberData);
Assertions.assertEquals(id, memberData.getId());
Assertions.assertEquals(oAuthId, memberData.getoAuthId());
Expand Down

0 comments on commit 123f147

Please sign in to comment.