/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/IntegrationTest/Harness/EqualException/EqualExceptionInConstructor.cs
22 строки
516 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 System; using Xunit; public class EqualExceptionInConstructor { public EqualExceptionInConstructor() { throw new InvalidOperationException("Unexpected exception"); } [IdeFact] public void EqualsSucceeds() { Assert.Equal(0, 0); } } }