Skip to content

Issues with broken links #525

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ DTO HExampleResponseDTO {

By default, all parameters are required (unless optional is used in front) and errors will be thrown in the controllers if parameters are missing.

To learn more about DTOs, read our reference guide on [DTOs](https://bitloops.com/docs/bitloops-language/reference/dto)
To learn more about DTOs, read this reference guide on [DTOs](https://stackoverflow.com/questions/1051182/what-is-a-data-transfer-object-dto)
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Entity TitleEntity {
}
```

Now, in Bitloops Language specifically, to ensure good coding practice, there is the concept of [Root Entity](https://bitloops.com/docs/bitloops-language/reference/entity). This is a special type of Entity as its the Entity that can be referenced by other objects in the application.
Now, in Bitloops Language specifically, to ensure good coding practice, there is the concept of Root Entity. This is a special type of Entity as its the Entity that can be referenced by other objects in the application.

To declare this type of Entity, you should simply add Root as a prefix:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ E. Boost productivity: BDD enhances productivity in the code development process
By incorporating BDD into the software development process, teams can benefit from improved collaboration, reduced risks, streamlined focus, better communication, and boosted productivity. These benefits ultimately lead to a higher quality product that meets the needs of both the business and the end-users.


## Key differences between traditional software development and behavior-driven development
## Traditional software development vs BDD

In traditional development process, the business owner conveys the software requirements to the product developer, who drafts a requirement document that is then shared with the developer and tester. The focus is on writing codes and test cases, and after executing the tests, changes are made and retesting is performed until the final product is delivered. However, in this process, the developers and testers are not involved in understanding the system's behavior, leading to potential miscommunication and errors in the final product.

Expand Down