ArrayTests.cs 819 B

1234567891011121314151617181920212223
  1. using Xunit;
  2. namespace Jint.Tests.Test262.BuiltIns
  3. {
  4. public class ArrayTests : Test262Test
  5. {
  6. [Theory(DisplayName = "built-ins\\Array")]
  7. [MemberData(nameof(SourceFiles), "built-ins\\Array", false)]
  8. [MemberData(nameof(SourceFiles), "built-ins\\Array", true, Skip = "Skipped")]
  9. protected void Array(SourceFile sourceFile)
  10. {
  11. RunTestInternal(sourceFile);
  12. }
  13. [Theory(DisplayName = "built-ins\\ArrayIteratorPrototype")]
  14. [MemberData(nameof(SourceFiles), "built-ins\\ArrayIteratorPrototype", false)]
  15. [MemberData(nameof(SourceFiles), "built-ins\\ArrayIteratorPrototype", true, Skip = "Skipped")]
  16. protected void ArrayIteratorPrototype(SourceFile sourceFile)
  17. {
  18. RunTestInternal(sourceFile);
  19. }
  20. }
  21. }