/// <summary>Provides validation of the <see cref="VectorUtilities.CreateFromXWAD(Vector128{float}, Vector128{float})" /> method.</summary> public static void CreateFromXWADTest() { Assert.That(() => VectorUtilities.CreateFromXWAD(Vector128.Create(0.0f, 1.0f, 2.0f, 3.0f), Vector128.Create(4.0f, 5.0f, 6.0f, 7.0f)), Is.EqualTo(Vector128.Create(0.0f, 3.0f, 4.0f, 7.0f)) ); }