2
0

FunctionCodeTests.cs 463 B

123456789101112131415
  1. using Xunit;
  2. namespace Jint.Tests.Test262.Language
  3. {
  4. public class FunctionCodeTests : Test262Test
  5. {
  6. [Theory(DisplayName = "language\\function-code")]
  7. [MemberData(nameof(SourceFiles), "language\\function-code", false)]
  8. [MemberData(nameof(SourceFiles), "language\\function-code", true, Skip = "Skipped")]
  9. protected void FunctionCode(SourceFile sourceFile)
  10. {
  11. RunTestInternal(sourceFile);
  12. }
  13. }
  14. }