Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
41d9610
CHORE : Project Init
yummygyudon Apr 15, 2024
eb3e4d6
DOCS : Chapter 01. TDD 시작하기
yummygyudon Apr 15, 2024
e646487
DOCS : Chapter 01. TDD 시작하기
yummygyudon Apr 15, 2024
cc9e264
TEST : 선 테스트 코드 작성
yummygyudon Apr 15, 2024
acafbbf
FEAT(`chap2`) : Calculator 클래스 & `plus()` 메서드 구현
yummygyudon Apr 15, 2024
66a8371
TEST(`chap2`) : Calculator 클래스 import & Test 통과
yummygyudon Apr 15, 2024
1bc2611
TEST(`chap2`) : 모든 규칙 충족 & "강함" 판정 Test 작성
yummygyudon Apr 15, 2024
a1e2743
FEAT(`chap2`) : 1차 테스트 코드 통과할만큼 구현
yummygyudon Apr 15, 2024
c71b6c6
TEST(`chap2`) : 길이 8글자 미만 불충족 & "보통" 판정 Test 작성
yummygyudon Apr 15, 2024
09903e2
FEAT(`chap2`) : 2차 테스트 코드 통과할만큼 구현
yummygyudon Apr 15, 2024
747da2c
TEST(`chap2`) : 숫자 포함 불충족 & "보통" 판정 Test 작성
yummygyudon Apr 15, 2024
df0b818
EAT(`chap2`) : 3차 테스트 코드 통과할만큼 구현
yummygyudon Apr 15, 2024
970bea0
TEST(`chap2`) : PasswordStrengthMeter 인스턴스 클래스 변수 선언 및 재활용
yummygyudon Apr 15, 2024
aec98bd
TEST(`chap2`) : Strength 검증 로직 메서드화
yummygyudon Apr 15, 2024
5d48280
DOCS : Chapter 02. TDD 시작하기 문서 작성 완료
yummygyudon Apr 15, 2024
c73dba8
CHORE : .gitignore setting
yummygyudon Apr 15, 2024
61cd03d
DOCS : 2주차 필기 Markdown 생성
yummygyudon Apr 29, 2024
f9307ee
DOCS : Chapter05.JUnit5 기초 & Chapter06.테스트 코드의 구성 Markdown 생성
yummygyudon May 14, 2024
145b22e
DOCS : 04.JUnit5-기초.md 1차 작성
yummygyudon May 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
40 changes: 40 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
HELP.md
yummygyudon/code/test-code/.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/
log

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/

*/src/main/generated
Binary file added yummygyudon/.DS_Store
Binary file not shown.
19 changes: 19 additions & 0 deletions yummygyudon/code/test-code/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
plugins {
id 'java'
}

group 'org.sopt'
version '1.0-SNAPSHOT'

repositories {
mavenCentral()
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}

test {
useJUnitPlatform()
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
240 changes: 240 additions & 0 deletions yummygyudon/code/test-code/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading