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