Skip to content

Commit f888705

Browse files
committed
✏️ Update Intro.razor content for TDD blog section
- Modified content to enhance clarity and engagement. - Improved structure for better readability. - Ensured alignment with overall blog theme. Generated by Copilot
1 parent 4c32b90 commit f888705

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

TestArena/Blog/TDD/Intro.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282

8383
<Section Heading="The TDD Cycle: Red, Green, Refactor" Level="4">
8484
<BlogImage ImagePath="/images/blog/tdd/intro/tdd-cycle.png"
85-
Description="Event-driven communication flow in the demo repository - showing how messages flow from Sender through Event Bus to multiple listeners (Receiver and Logger)"
85+
Description="TDD Cycle: Red, Green, Refactor" />
8686
Number="1" />
8787
<ul>
8888
<li><b>Red:</b> Write a test for a new feature. It should fail, since the feature doesn’t exist yet.</li>
@@ -179,7 +179,7 @@ public class Calculator
179179
</li>
180180
<li>
181181
<strong>Move Up to the UI/Integration Level:</strong> Now that the core logic is solid and tested, you can work on the UI. You can be confident that if you pass a <code>`Product`</code> object to your Razor component, the <code>`product.IsNew`</code> property will work correctly. Your UI logic becomes simpler:
182-
<CodeSnippet Language="razor" Description="UI logic becomes trivial" Number="3">
182+
<CodeSnippet Description="UI logic becomes trivial" Number="3">
183183
@@if (product.IsNew)
184184
{
185185
&lt;span class="badge"&gt;New&lt;/span&gt;

0 commit comments

Comments
 (0)