Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions acceptance-test-results.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Acceptance Test Results
# Acceptance Test Report

## Memory Usage (Phpolar\Phpolar\MemoryUsage)
- [x] Memory usage for filtering a response shall be below 70000 bytes
- [x] Memory usage for filtering a response shall be below 72000 bytes

## Project Size (Phpolar\Phpolar\ProjectSize)
- [x] Source code total size shall be below 2100 bytes
- [x] Source code total size shall be below 2200 bytes
11 changes: 10 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,16 @@
"smell": "phpmd ./src ansi design,cleancode,codesize,naming",
"test": "phpunit --color=always",
"test:acceptance": "@test --configuration=phpunit.dev.xml --testsuite acceptance",
"test:acceptance:report": "@test --configuration=phpunit.dev.xml --testsuite acceptance --testdox-text acceptance-test-results.md",
"test:acceptance:report": [
"@test:acceptance --testdox-text acceptance-test-results.md",
"@acceptance-report-subheadings",
"@acceptance-report-checkbox",
"@acceptance-report-title"
],
"acceptance-report-title": "sed -i -e '1i # Acceptance Test Report\\n' acceptance-test-results.md",
"acceptance-report-subheadings": "sed -i -E 's/^(\\S)/## \\1/' acceptance-test-results.md",
"acceptance-report-checkbox": "sed -i -E 's/^ \\[/- [/' acceptance-test-results.md",

"test:benchmark": "@test --configuration=phpunit.dev.xml --testsuite benchmark",
"test:unit": "@test --configuration=phpunit.dev.xml --testsuite unit",
"test:coverage": "XDEBUG_MODE=coverage composer exec \"@test --configuration=phpunit.ci.xml --coverage-text --testsuite unit\""
Expand Down
Loading