Skip to content

Commit

Permalink
[modelio] Add missing Xcode 8 asserts to tests (#2467)
Browse files Browse the repository at this point in the history
- Fixes bug #58535: [iOS] MDLMeshtest failures on iOS device
(https://bugzilla.xamarin.com/show_bug.cgi?id=58535)
  • Loading branch information
VincentDondain authored Aug 9, 2017
1 parent c2701c1 commit c73d173
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/monotouch-test/ModelIO/MDLMesh.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ public void CreateBoxWithDimensonTest ()
[Test]
public void CreateBoxWithExtentTest ()
{
TestRuntime.AssertXcodeVersion (8, 0);

Vector3 V3 = new Vector3 (1, 2, 3);
Vector3i V3i = new Vector3i (4, 5, 6);

Expand Down Expand Up @@ -197,6 +199,8 @@ public void CreateCylindroidTest ()
[Test]
public void CreateCylinderTest ()
{
TestRuntime.AssertXcodeVersion (8, 0);

var V3 = new Vector3 (1, 1, 1);
var V2i = new Vector2i (3, 3);

Expand Down

0 comments on commit c73d173

Please sign in to comment.