준비된 DOR 정의 및 완료된 DOD 템플릿 정의

1945 단어
임무가 언제 시작되거나 언제 완성될 수 있는지 정의하는 것은 기본적인 활동으로 개발진이 임무 흐름을 통제하고 수요가 명확한 정의가 없을 때 곤경에 빠지지 않도록 도와준다.그것 은 또한 개발 지점 에 미완성 의 변경 사항 을 보내는 것 을 방지할 수 있다

ready DOR의 정의
첫 번째 정의는 팀이 임무를 개발할 준비가 되어 있는지 검증하는 데 도움을 준다.다음은 검증의 기본 목록으로, 팀이 작업에 필요한 정보가 있는지 확인하는 데 도움을 줄 수 있습니다.
├── Is ready to start?
│   └── acceptance criteria is correctly described?
│       ├── If is a user interface, are the prototypes well defined and the gherkins written?
│       ├── If is an API, are all the entities and their attributes defined?
│       └── if (task cannot be started)
│          ├── add a comment
│          ├── move to parking lot
│          ├── assign to the person responsible for solving
│          └── end
├── update task status
│   ├── check estimated story points
│   ├── move the task to in progress
│   ├── create branch to work
│   └── create a pull request
└── end

국방부의 정의
├── basic validation
│   ├── follows TDD required structure?
│   ├── do structure follows CQRS structure?
│   ├── were all requirements completed?
│   ├── follows the required graphical design?
│   ├── are transactions tracked in AI?
│   └── are resources translated?
│       └── was static code analysis performed?
├── before sending a pull request
│   ├── validate that all automated tests are working
│   ├── static code analysis passing
│   ├── format code if needed
│   ├── check comments grammar
│   ├── remove any commented code
│   └── remove visual studio warnings
├── developer test environment validation
│   ├── commit changes
│   ├── merge changes from the integration branch
│   └── send pull request

좋은 웹페이지 즐겨찾기