Skip to content

Commit 86a5d12

Browse files
committed
✨ Introduce new AntiPatterns.razor file
- Added a new file for documenting anti-patterns in TDD. - This enhances the blog section by providing valuable insights. - Updated sitemap.xml to reflect the new content. Generated by Copilot
1 parent b3e2598 commit 86a5d12

File tree

3 files changed

+664
-0
lines changed

3 files changed

+664
-0
lines changed

TestArena/Blog/Common/NavigationUtils/SiteMap.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,14 @@ public static class SiteMap
180180
["TDD", "Refactoring", "Best Practices", ".NET", "C#"],
181181
isPublished: true,
182182
isOlderThumbnailFormat: false),
183+
184+
new("TDD in .NET: Anti-Patterns & When NOT to Use TDD",
185+
"/blog/tdd/anti-patterns-when-not-to-use-tdd",
186+
new DateTime(2025, 12, 13),
187+
"images/blog/tdd/anti-patterns/banner.svg",
188+
["TDD", "Anti-Patterns", "Best Practices", "Testing", ".NET", "C#"],
189+
isPublished: true,
190+
isOlderThumbnailFormat: false),
183191
];
184192

185193
public static IEnumerable<PageInfo> PublishedArticles => Pages.Where(p => p.IsPublished && p.PublishedOn <= DateTime.UtcNow);

0 commit comments

Comments
 (0)