|
44 | 44 | <div class="custom-column custom-column-md custom-column-lg custom-column-xl custom-column-xxl">
|
45 | 45 | <div class="main-text-container p-5 text-left">
|
46 | 46 | <p class="p-2 text-dark fs-2 m-0">
|
47 |
| - <b>The easiest way to generate controllable arbitrary test objects</b> |
| 47 | + <b>The easiest way to generate fully-customizable, randomly populated instance</b> |
48 | 48 | </p>
|
49 | 49 | </div>
|
50 |
| - <p class="text-secondary fs-5 fw-medium mt-3 sub-text"> |
51 |
| - Java & Kotlin library for automatically generating reusable and controllable, arbitrary test fixtures |
| 50 | + <p class="text-secondary fs-5 fw-medium mt-3 sub-text" align="center"> |
| 51 | + Java & Kotlin library to support both DRY(Don't Repeat Yourself) and DAMP(Descriptive And Meaningful Phrases) testing |
52 | 52 | </p>
|
53 | 53 | </div>
|
54 | 54 | </section>
|
|
59 | 59 | <div class="p-3 mt-3 feature-text-container text-center">
|
60 | 60 | <i class="mt-5 fa-solid fa-wand-sparkles me-2 fa-2xl"></i>
|
61 | 61 | <h2 class="h3">Simplicity</h2>
|
62 |
| - <p> Effortlessly generate any kind of test object with just one line of code. </p> |
63 |
| - <p> Complex test objects can be easily generated with the Builder Pattern. </p> |
| 62 | + <p> Instantiate your instance by one line </p> |
| 63 | + <p> All the properties can be customizable using the familiar notation within the Builder Pattern. </p> |
64 | 64 | </div>
|
65 | 65 | </div>
|
66 | 66 | <div class="col-lg-5">
|
67 | 67 | <div class="p-3 mt-3 feature-text-container text-center">
|
68 | 68 | <i class="mt-5 fa-solid fa-recycle me-2 fa-2xl"></i>
|
69 | 69 | <h2 class="h3">Reusability</h2>
|
70 | 70 | <p> Define complex specifications once and reuse them! </p>
|
71 |
| - <p> Configurations of instances can be reused across multiple tests. </p> |
| 71 | + <p> It is interoperable in any environment, and requires no complex setup</p> |
72 | 72 | </div>
|
73 | 73 | </div>
|
74 | 74 | <div class="col-lg-5">
|
75 | 75 | <div class="p-3 mt-3 feature-text-container text-center">
|
76 | 76 | <i class="mt-5 fa-solid fa-dice me-2 fa-2xl"></i>
|
77 | 77 | <h2 class="h3">Randomness</h2>
|
78 |
| - <p> Make your tests more dynamic by randomly generating test objects. </p> |
79 |
| - <p> You can uncover edge cases that may remain hidden when using static data. </p> |
| 78 | + <p> Except for important properties within the concern, the remaining properties are randomly populated. </p> |
| 79 | + <p> You can discover the important properties without paying attention. </p> |
80 | 80 | </div>
|
81 | 81 | </div>
|
82 | 82 | </div>
|
|
0 commit comments