## test()


Run the specified test suite.


Usage


``` python
test(suite="unit")
```


## Parameters


`suite: str = ``"unit"`  
The name of the test suite to run, by default "unit".


## Returns


`dict`  
A dictionary containing test results with passed and failed counts.


## Examples

``` python
>>> test("integration")
```

{'suite': 'integration', 'passed': 10, 'failed': 0}
