Skip to content

Commit

Permalink
[Weekly/10/Test/Member-Controllers] add MemberControllerUnitTest Temp…
Browse files Browse the repository at this point in the history
…late (#84)
  • Loading branch information
lja3723 committed Nov 8, 2024
1 parent e3bd51e commit 561eb30
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package org.ktc2.cokaen.wouldyouin.member.api;

import static org.junit.jupiter.api.Assertions.*;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;

@WebMvcTest(MemberController.class)
class MemberControllerUnitTest {



@BeforeEach
void setUp() {
}

@Test
void updateMember() {
}

@Test
void findMember() {
}

@Test
void deleteMember() {
}
}

0 comments on commit 561eb30

Please sign in to comment.