SourceText.cs 561 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Xunit;
  7. using Xunit.Extensions;
  8. namespace Jint.Tests.Test262
  9. {
  10. public class SourceText : TestBase
  11. {
  12. public SourceText()
  13. : base("ch06")
  14. {
  15. }
  16. [Theory]
  17. [Trait("Description", @"Test for handling of supplementary characters")]
  18. [InlineData("6.1.js")]
  19. public void TestForHandlingSupplimentaryCharacters(string file)
  20. {
  21. Run(file);
  22. }
  23. }
  24. }