Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

AIForge-04-Testing

Testing Dataset for AI and Programming Tasks

Overview

AIForge-04-Testing is a curated English dataset designed for AI systems working on testing tasks in software engineering and programming.

Contents

  • data.jsonl
  • data.json
  • metadata.json

Use Cases

  • AI agent training
  • Supervised fine-tuning
  • Evaluation and benchmarking
  • Software engineering research

Example Record

{
  "id": "AITST_00001",
  "category": "testing",
  "language": "javascript",
  "framework": "jest",
  "scenario": "Write tests for a JavaScript function used in the checkout domain.",
  "code_under_test": "function processEvent(items) {\n  return items.map(item => String(item).trim()).filter(Boolean);\n}",
  "testing_goal": "Validate the happy path, edge cases, and error handling.",
  "test_code": "describe('event', () => {\n  it('handles a normal input set', () => {\n    expect(processEvent(['a', 'bb'])).toEqual(['a', 'bb']);\n  });\n});",
  "explanation": "Use jest to assert deterministic behavior and protect the event logic from regressions.",
  "difficulty": 1
}

License

Released under CC BY 4.0.

Source

JumpLander

Downloads last month
82