An open API service indexing awesome lists of open source software.

https://github.com/pramithamj/ballerina-testing


https://github.com/pramithamj/ballerina-testing

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# Ballerina Testing

This document provides instructions on how to run tests and generate reports for your Ballerina project.

## Running Tests

To run the Ballerina tests, use the following command:

```sh
bal test
````

This command will execute all the test cases in your project.

### Generating Code Coverage Report
To run the tests and generate a code coverage report, use the following command:

```sh
bal test --code-coverage --test-report
```

This command will execute all the test cases and generate a report with code coverage details.