UISystemProfilerAddMarkerWithNullObjectDoesNotCrash.cs 296 B

1234567891011121314
  1. using UnityEngine;
  2. using NUnit.Framework;
  3. namespace Tests
  4. {
  5. public class UISystemProfilerAddMarkerWithNullObjectDoesNotCrash
  6. {
  7. [Test]
  8. public void AddMarkerShouldNotCrashWithNullObject()
  9. {
  10. UISystemProfilerApi.AddMarker("Test", null);
  11. }
  12. }
  13. }