Изменения документа MSTest
Редактировал(а) Alexandr Fokin 2023/08/08 15:23
<
>
отредактировано Alexandr Fokin
на 2023/01/08 19:39
на 2023/01/08 19:39
отредактировано Alexandr Fokin
на 2023/01/09 03:07
на 2023/01/09 03:07
Изменить комментарий:
К данной версии нет комментариев
Комментарий
-
Свойства страницы (1 изменено, 0 добавлено, 0 удалено)
Подробности
- Свойства страницы
-
- Содержимое
-
... ... @@ -1,1 +1,25 @@ 1 1 Из коробки интегрируется с [[VisualStudio>>doc:Разработка.NET.VisualStudio.WebHome||style="outline-width: 0px !important; user-select: auto !important;"]]. 2 + 3 +Использование платформы MSTest в модульных тестах 4 +[[https:~~/~~/learn.microsoft.com/ru-ru/visualstudio/test/using-microsoft-visualstudio-testtools-unittesting-members-in-unit-tests?view=vs-2022>>https://learn.microsoft.com/ru-ru/visualstudio/test/using-microsoft-visualstudio-testtools-unittesting-members-in-unit-tests?view=vs-2022]] 5 + 6 +---- 7 + 8 +(% style="width:940px" %) 9 +|(% style="width:937px" %)Атрибуты - события 10 +|(% style="width:937px" %){{code language="none"}}AssemblyInitialize 11 +TestClass1: ClassInitialize 12 +TestClass1: TestInitialize 13 +TestClass1: MyTestCase1 14 +TestClass1: TestCleanup 15 +TestClass2: ClassInitialize 16 +TestClass2: TestInitialize 17 +TestClass2: MyTestCase2 18 +TestClass2: TestCleanup 19 +TestClass1: ClassCleanup 20 +TestClass2: ClassCleanup 21 +AssemblyCleanup{{/code}} 22 +|(% style="width:937px" %)ClassCleanup May Run Later Than You Think 23 +[[https:~~/~~/learn.microsoft.com/ru-ru/archive/blogs/ploeh/classcleanup-may-run-later-than-you-think>>https://learn.microsoft.com/ru-ru/archive/blogs/ploeh/classcleanup-may-run-later-than-you-think]] 24 + 25 +