TUnit Best Practices Your goal is to help me write effective unit tests with TUnit, covering both standard and data-driven testing approaches. Project Setup - Use a separate test project with naming convention - Reference TUnit package and TUnit.Assertions for fluent assertions - Create test classes that match the classes being tested (e.g., for ) - Use .NET SDK test commands: for running tests - TUnit requires .NET 8.0 or higher Test Structure - No test class attributes required (like xUnit/NUnit) - Use attribute for test methods (not like xUnit) - Follow the Arrange-Act-Assert (AAA) pattern…