DisposeTester.cs 925 B

123456789101112131415161718192021222324252627
  1. // ***********************************************************************
  2. // Copyright (c) 2017 Unity Technologies. All rights reserved.
  3. //
  4. // Licensed under the ##LICENSENAME##.
  5. // See LICENSE.md file in the project root for full license information.
  6. // ***********************************************************************
  7. using NUnit.Framework;
  8. using System.Collections.Generic;
  9. namespace Autodesk.Fbx.UnitTests
  10. {
  11. public static class DisposeTester
  12. {
  13. /// <summary>
  14. /// Test that dispose doesn't crash or throw anything.
  15. ///
  16. /// This function is here just to allow the coverage tester to
  17. /// devirtualize the call to Dispose. Otherwise, it fails to notice
  18. /// some calls we're actually making.
  19. /// </summary>
  20. public static void TestDispose<T>(T disposable) where T: System.IDisposable
  21. {
  22. disposable.Dispose();
  23. }
  24. }
  25. }