/
Metallist64
/
rbfx
Обзор
Документация
Войти
/
Metallist64
/
rbfx
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Source/Tests/CSharp/Math/Matrix3Tests.cs
22 строки
561 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 Matrix3Tests { [Fact] public void ParseToString() { Matrix3 value = new Matrix3(1.1f, 2.2f, 3.3f, 4.4f, 5.1f, 6.2f, 7.3f, 8.4f, 9.1f); var res = Matrix3.Parse(value.ToString()); Assert.Equal(value, res); } } }