/
Metallist64
/
rbfx
Обзор
Документация
Войти
/
Metallist64
/
rbfx
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Source/Tests/CSharp/Math/RectTests.cs
21 строка
503 B
gleblebedev
SerializableResource and serialization related fixes (#671)
08 май 2024, 11:15
Не верифицирован
08 май 2024, 11:15
300980b
Код
Авторство
О чём код?
// Copyright (c) 2024-2024 the rbfx project. // This work is licensed under the terms of the MIT license. // For a copy, see <https://opensource.org/licenses/MIT> or the accompanying LICENSE file. using Xunit; namespace Urho3DNet.Tests { public class RectTests { [Fact] public void ParseToString() { Rect value = new Rect(1.1f, 2.2f, 3.3f, 4.4f); var res = Rect.Parse(value.ToString()); Assert.Equal(value, res); } } }