# TestBox

## testbox

**object**

This object stored configuration information used by the TestBox BDD and xUnit testing library. The data is accessed by commands in the `testbox` command namespace.

### testbox.runner

**string** or **array**

`testbox.runner` can be a simple string that contains the full runner URL.

```javascript
"testbox" : {
    "runner" : "http://localhost/tests/runner.cfm"
}
```

```bash
package set testbox.runner="http://localhost/tests/runner.cfm"
package show testbox.runner
testbox run
```

`testbox.runner` can alternatively be an array of objects containing "named" runner URLs.

```javascript
"testbox" : {
    "runner" : [
        { "cf11"   : "http://cf9.localhost/tests/runner.cfm" },
        { "lucee" : "http://railo.localhost/tests/runner.cfm" }
    ]
}
```

```bash
package set testbox.runner="[ { default : 'http://localhost/tests/runner.cfm' } ]" --append
package show testbox.runner
testbox run default
```

## More...

Our box.json template shows other placeholder properties inside the `testbox` object, but only `runner` is implemented for now.

*In the future, the* `testbox` *object may be moved into a separate JSON file for organizational purposes.*


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://commandbox.ortusbooks.com/5.3.0/package-management/box-json/testbox.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
