This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // eslint-disable-next-line max-classes-per-file | |
| interface EventExecutor<T, R> { | |
| execute(input: T): R; | |
| } | |
| interface EventInterceptor<T, R> { | |
| beforeFn(): EventExecutor<T, T>[]; | |
| executeFn(): EventExecutor<T, R>; |
Feature: Behavior Driven Development (BDD).
In order to:- Avoid rework due to misunderstand and slow feedback among project manager, project owner, developer, QA/tester, sales, any guys join IT projects and customer.
Andmake project information is transperant as human readable.Andkeep software functions work as design after refactor/restructure code.
Aspeople (tech/non-tech)want toget knowledge of BDD.Scenario: BDD Overview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git ls-files | grep \.sh | tr '\n' ' ' | |
| git update-index --chmod=+x $(git ls-files | grep \.sh | tr '\n' ' ') |