# 유닛 테스트 작성

> Write unit tests for your modules to identify and fix issues early in development.

코드에 대한 유닛 테스트를 하면 개발 프로세스 초기에 문제를 파악하고 수정하여 코드를 예상한 대로 실행하고 모듈에서 버그가 발생할 확률을 낮출 수 있습니다.

| **주제**                                             | **설명**                                                                  |
| -------------------------------------------------- | ----------------------------------------------------------------------- |
| [유닛 테스트 프로젝트 생성](./unit-testing-create-project.md) | JetBrain Rider 또는 Microsoft Visual Studio에서 유닛 테스트 프로젝트를 만드는 방법을 알아봅니다. |
| [유닛 테스트 생성](./unit-testing-create.md)              | 예제를 사용하여 프로젝트에 유닛 테스트를 추가하는 방법을 알아봅니다.                                  |

`NUnit`을 사용한 유닛 테스트에 관한 자세한 내용은 Microsoft의 [첫 번째 테스트 만들기](https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-with-nunit#creating-the-first-test) 기술 자료(영문)를 참고하십시오.
