public void TestStaticFn_TransformNormal_ii ()
{
Matrix44 rotmat = Matrix44.Identity;
Vector4 normal = new Vector4 (21, -532, 0, 91);
Vector4 result;
Assert.Throws(
typeof(ArgumentOutOfRangeException),
() =>
Vector4.TransformNormal(ref normal, ref rotmat, out result)
);
}