What are the advantages of using DI in unit testing?
- Easier mocking of dependencies using frameworks like Moq or NSubstitute.
- No need to instantiate real implementations (e.g., database access) for tests.
- Improved isolation of the unit under test.
- Faster, more reliable tests due to lack of external dependency reliance.