Tests: A Quick Overview on Unit vs Functional Testing
Unit tests or functional tests? What's the difference and which ones should you be using? Find out in this super quick compare-and-contrast!
Testing is a critical part of being an effective software engineer and having high-performing software engineering teams.
Unit tests or functional tests? What's the difference and which ones should you be using? Find out in this super quick compare-and-contrast!
Having worked with C# for quite some time now writing desktop applications, I've begun making the transition over to .NET standard. In my professional working experience, it was a much slower transition because of product requirements and time, but in my own personal development there's no reason why I couldn't get started with it. And call me crazy, but I enjoy writing coded tests for the things I make. My favorite testing framework for my C# development is xUnit, and naturally as I started writing some new code with .NET Standard I wanted to make sure I could get my tests to run. But I did hit a little snag with my xUnit tests not running... Let's check it out! xUnit Tests - The Example Here's an example of some C# code I wrote for my unit tests of a…