주 메뉴 열기

wwiki β

바뀜

XUnit.net

35 바이트 추가됨, 2021년 6월 14일 (월) 12:39
편집 요약 없음
=== Comparing xUnit.net to other frameworks ===
https://xunit.net/docs/comparisons
 
==== Attributes ====
{| class="wikitable"
|NUnit 3.x
|}
===== Attribute Notes =====
====== Note 1 ======
기대되는 예외지정<syntaxhighlight lang="csharp">
#nullable enable
</syntaxhighlight>
====== Note 2 ====== 
각 테스트를 실행하기 전에 실행할 코드를 지정할 때 사용한다.<syntaxhighlight lang="csharp">
// Use TestInitialize to run code before running each test
</syntaxhighlight>
====== Note 3 ====== 
클래스의 첫 번째 테스트를 실행하기 전에 실행할 코드를 지정한다.<syntaxhighlight lang="csharp">
using System;
</syntaxhighlight>
====== Note 4 ====== 
데이터 기반 단위 테스트<syntaxhighlight lang="csharp">
public int AddIntegers(int first, int second)
편집
2,431