-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Metadata
- initial qc commit: 3f1c95d
- git branch: readme
- author: Wes Cummings (wes@a2-ai.com)
- file contents at initial qc commit
Code Review
Note: edit checklist items as needed
Functionality
Behavior
- Runs without errors or warnings
- Handles edge cases
Input/output
- Validates inputs
- Outputs are documented and tested
Testing
Confirm for integrated and unit tests
- Coverage
- 0, 1, and n cases are tested
- Failure modes tested
- Quality
- Tests are readable and minimal
- CI passes
# R example test
library(testthat)
test_that("addition works", {
expect_equal(add(2, 3), 5)
})Notes for QCer
[INSERT]
Tip: Run
styler,lintr, or other linters before submitting.
Reactions are currently unavailable