How can we use NUnit to test ASP.NET Core?

In this article, I explain how to leverage NUnit in ASP NET Core tests with simple code examples.

xUnit has been my preferred testing framework, but I felt like it was important to dive back into NUnit as well. While I still need to dedicate more time to it, I wanted to document some of the process so that you can see how to leverage NUnit in your ASP NET Core tests!

Check out the article:
https://www.devleader.ca/2024/02/16/nunit-in-asp-net-core-what-you-need-to-get-started/

I think the thing I find most frustrating about programming languages is that there is no standard way to refer to the length of an array.

Python, go: len(array)
Java, JavaScript: array.length
Rust: array.len()
C++: array.size()
C#: array.Length
PHP: count($array)
Perl: scalar(@array) (lmao)
Swift: array.count
Kotlin: array.size

Like, seriously? Can't we agree on just this one thing???