No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StartEventArgsTests.cs 508B

123456789101112131415161718192021
  1. using NUnit.Framework;
  2. using UnityEngine.Advertisements.Events;
  3. namespace UnityEngine.Advertisements.Tests
  4. {
  5. [TestFixture]
  6. class StartEventArgsTests
  7. {
  8. [TestCase("ads")]
  9. [TestCase("intro")]
  10. [TestCase("test")]
  11. [TestCase("")]
  12. [TestCase(null)]
  13. public void Constructor(string placementId)
  14. {
  15. var eventArgs = new StartEventArgs(placementId);
  16. Assert.That(eventArgs.placementId, Is.EqualTo(placementId));
  17. }
  18. }
  19. }