Unit testing involves testing individual units or components of an application to verify that each unit performs as expected. A unit test automates the invocation of a unit of work and checks the expected outcome without relying on other units. Good unit tests are automated, repeatable, easy to implement, run quickly and consistently, and isolate the unit from its dependencies. Integration testing differs in that it involves testing units using real dependencies rather than isolated fakes or stubs. Test-driven development involves writing tests before code so that tests fail initially and then pass after the code is implemented. Unit testing frameworks like NUnit provide attributes to mark tests, expected exceptions, setup and teardown methods, and assertions to validate outcomes.