mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-08-17 00:25:54 +00:00
docs: Content SEO updates (#2990)
* update yaml frontmatter format * update abstract document * update abstract factory * use the new pattern template * acyclic visitor seo * adapter seo * ambassador seo * acl seo * aaa seo * async method invocation seo * balking seo * bridge seo * builder seo * business delegate and bytecode seo * caching seo * callback seo * chain seo * update headings * circuit breaker seo * client session + collecting parameter seo * collection pipeline seo * combinator SEO * command seo * cqrs seo * commander seo * component seo * composite seo * composite entity seo * composite view seo * context object seo * converter seo * crtp seo * currying seo * dao seo * data bus seo * data locality seo * data mapper seo * dto seo * decorator seo * delegation seo * di seo * dirty flag seo * domain model seo * double buffer seo * double checked locking seo * double dispatch seo * dynamic proxy seo * event aggregator seo * event-based asynchronous seo * eda seo * event queue seo * event sourcing seo * execute around seo * extension objects seo * facade seo * factory seo * factory kit seo * factory method seo * fanout/fanin seo * feature toggle seo * filterer seo * fluent interface seo * flux seo * flyweight seo * front controller seo * function composition seo * game loop seo * gateway seo * guarded suspension seo * half-sync/half-async seo * health check seo * hexagonal seo * identity map seo * intercepting filter seo * interpreter seo * iterator seo * layers seo * lazy loading seo * leader election seo * leader/followers seo * lockable object seo * rename and add seo for marker interface * master-worker seo * mediator seo * memento seo * metadata mapping seo * microservice aggregator seo * api gw seo * microservices log aggregration seo * mvc seo * mvi seo * mvp seo * mvvm seo * monad seo * monitor seo * monostate seo * multiton seo * mute idiom seo * naked objects & notification seo * null object seo * object mother seo * object pool seo * observer seo * optimistic locking seo * page controller seo * page object seo * parameter object seo * partial response seo * pipeline seo * poison pill seo * presentation model seo * private class data seo * producer-consumer seo * promise seo * property seo * prototype seo * proxy seo * queue-based load leveling seo * reactor seo * registry seo * repository seo * RAII seo * retry seo * role object seo * saga seo * separated interface seo * serialized entity seo * serialized lob seo * servant seo * server session seo * service layer seo * service locator seo * service to worker seo * sharding seo * single table inheritance seo * singleton seo * spatial partition seo * special case seo * specification seo * state seo * step builder seo * strangler seo * strategy seo * subclass sandbox seo * table module seo * template method seo * throttling seo * tolerant reader seo * trampoline seo * transaction script seo * twin seo * type object seo * unit of work seo * update method seo * value object seo * version number seo * virtual proxy seo * visitor seo * seo enhancements * seo improvements * SEO enhancements * SEO improvements * SEO additions * SEO improvements * more SEO improvements * rename hexagonal + SEO improvements * SEO improvements * more SEO stuff * SEO improvements * SEO optimizations * SEO enhancements * enchance SEO * improve SEO * SEO improvements * update headers
This commit is contained in:
@@ -1,24 +1,26 @@
|
||||
---
|
||||
title: Arrange/Act/Assert
|
||||
title: "Arrange/Act/Assert Pattern in Java: Enhance Testing Clarity and Simplicity"
|
||||
shortTitle: Arrange/Act/Assert
|
||||
description: "Learn how to use the Arrange/Act/Assert pattern to structure your unit tests in Java. Improve readability and maintainability of your code with clear testing phases."
|
||||
category: Testing
|
||||
language: en
|
||||
tag:
|
||||
- Code simplification
|
||||
- Isolation
|
||||
- Testing
|
||||
- Code simplification
|
||||
- Isolation
|
||||
- Testing
|
||||
---
|
||||
|
||||
## Also known as
|
||||
|
||||
* Given/When/Then
|
||||
|
||||
## Intent
|
||||
## Intent of Arrange/Act/Assert Design Pattern
|
||||
|
||||
To structure unit tests clearly by dividing them into three distinct sections: setup (Arrange), execution (Act), and verification (Assert).
|
||||
The Arrange/Act/Assert pattern is essential in unit testing in Java. This testing method structures unit tests clearly by dividing them into three distinct sections: setup (Arrange), execution (Act), and verification (Assert).
|
||||
|
||||
## Explanation
|
||||
## Detailed Explanation of Arrange/Act/Assert Pattern with Real-World Examples
|
||||
|
||||
Real world example
|
||||
Real-world example
|
||||
|
||||
> Imagine you are organizing a small event. To ensure everything runs smoothly, you follow a pattern similar to Arrange/Act/Assert:
|
||||
>
|
||||
@@ -36,9 +38,9 @@ WikiWikiWeb says
|
||||
|
||||
> Arrange/Act/Assert is a pattern for arranging and formatting code in UnitTest methods.
|
||||
|
||||
**Programmatic Example**
|
||||
## Programmatic Example of Arrange/Act/Assert Pattern in Java
|
||||
|
||||
We need to write comprehensive and clear unit test suite for a class.
|
||||
We need to write comprehensive and clear unit test suite for a class. Using the Arrange/Act/Assert pattern in Java testing ensures clarity.
|
||||
|
||||
Let's first introduce our `Cash` class to be unit tested.
|
||||
|
||||
@@ -121,19 +123,19 @@ class CashAAATest {
|
||||
}
|
||||
```
|
||||
|
||||
## Applicability
|
||||
## When to Use the Arrange/Act/Assert Pattern in Java
|
||||
|
||||
Use Arrange/Act/Assert pattern when
|
||||
|
||||
* Unit testing, especially within the context of TDD and BDD
|
||||
* Anywhere clarity and structure are needed in test cases
|
||||
|
||||
## Known uses
|
||||
## Real-World Applications of Arrange/Act/Assert Pattern in Java
|
||||
|
||||
* Widely adopted in software projects using TDD and BDD methodologies.
|
||||
* This pattern is particularly useful when practicing TDD and/or BDD methodologies in Java.
|
||||
* Utilized in various programming languages and testing frameworks, such as JUnit (Java), NUnit (.NET), and xUnit frameworks.
|
||||
|
||||
## Consequences
|
||||
## Benefits and Trade-offs of Arrange/Act/Assert Pattern
|
||||
|
||||
Benefits:
|
||||
|
||||
@@ -146,11 +148,11 @@ Trade-offs:
|
||||
* May introduce redundancy in tests, as similar arrangements may be repeated across tests.
|
||||
* Some complex tests might not fit neatly into this structure, requiring additional context or setup outside these three phases.
|
||||
|
||||
## Related patterns
|
||||
## Related Java Design Patterns
|
||||
|
||||
* [Page Object](https://java-design-patterns.com/patterns/page-object/): A pattern for organizing UI tests that can be used in conjunction with Arrange/Act/Assert.
|
||||
|
||||
## Credits
|
||||
## References and Credits
|
||||
|
||||
* [The Art of Unit Testing: with examples in C#](https://amzn.to/49IbdwO)
|
||||
* [Test Driven Development: By Example](https://amzn.to/3wEwKbF)
|
||||
|
||||
Reference in New Issue
Block a user