/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/IntegrationTest/Harness/EqualException/EqualExceptionInBeforeAfterTest.cs
24 строки
529 B
David Barbet
Shorten file paths to prevent long path issues opening the slnx
10 дек 2025, 22:44
10 дек 2025, 22:44
7830fcf
Код
Авторство
О чём код?
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for more information. namespace EqualExceptionLegacy { using Xunit; public class EqualExceptionInBeforeAfterTest { [IdeFact] [ExceptionBeforeTest] public void FailBeforeTest() { Assert.Equal(0, 0); } [IdeFact] [ExceptionAfterTest] public void FailAfterTest() { Assert.Equal(0, 0); } } }