# Create Tests https://api-docs.lumar.io/docs/protect/tests/create-tests The follwing mutation creates a test for a test suite: ```graphql mutation CreateTest($testSuiteId: ObjectID!, $reportTemplateCode: String!) { createTest(input: { testSuiteId: $testSuiteId, reportTemplateCode: $reportTemplateCode }) { test { id } } } ``` :::tip `testSuiteId` and `reportTemplateCode` are the only required parameters. :::