[일지] 2026.01.26

김재만·2026년 1월 25일

작업한 것

  • BDD-TDD-QMS
    • 거킨 작성 → BDD 프레임워크 설치

배운 것

  • BDD 프레임워크 시스템이 명세된 행동을 수행하는지 자동 검증하는 도구.
    • Java - Cucumber
    • Python - behave, pytest-bdd
    • Node.js - Cucumber.js
    • Front - Cypress Plugin, Playwright with BDD
  • Maven Java 디펜던시 설치 pom.xml에 디펜던시 명시
    <dependencies>
      ...	
    		<dependency>
    			<groupId>io.cucumber</groupId>
    			<artifactId>cucumber-java</artifactId>
    			<version>7.15.0</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>io.cucumber</groupId>
    			<artifactId>cucumber-junit</artifactId>
    			<version>7.15.0</version>
    			<scope>test</scope>
    		</dependency>
    </dependencies>

다음 작업

  • 큐컴버 가동하기

마무리

그래 그리 쉽지는 않겠지

profile
듣는 것을 좋아하는 개발자입니다

0개의 댓글