Skip to content

Instantly share code, notes, and snippets.

@breqdev
Last active March 23, 2022 20:40
Show Gist options
  • Save breqdev/d46a6085191a47433acbb68ce0865f32 to your computer and use it in GitHub Desktop.
Save breqdev/d46a6085191a47433acbb68ce0865f32 to your computer and use it in GitHub Desktop.
Launch configuration to run Java programs using the Khoury Tester library
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Run using Tester",
"request": "launch",
"mainClass": "tester.Main",
"projectName": "${input:projectName}",
"args": "${input:examples}"
}
],
"inputs": [
{
"id": "projectName",
"type": "promptString",
"description": "Enter the name of your project",
"default": ""
},
{
"id": "examples",
"type": "promptString",
"description": "Enter the name of your examples class",
"default": ""
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment