Roadmap
The Roadmap defines what features are currently being worked on and what's next!
Last updated
Was this helpful?
The Roadmap defines what features are currently being worked on and what's next!
Last updated
Was this helpful?
Ability to disable a test, TestCase, or TestSuite (Implemented with )
Include more Assertions to those that come out-of-the-box. (Implemented with )
Randomize the order in which tests are ran. (Implemented with )
Show the time and memory required for running your tests in result output. (Implemented with )
Ensure tests that output anything are marked as failing. (Implemented with )
Allow for a TestCase to expect that an exception should be thrown. (Implemented with )
Introduce an Amp\ByteStream\OutputStream decorator for creating rich terminal output and improve the quality of the output for the default result printer. (Implemented with )
Refactor Parser implementation to use asynchronous I/O. (Implemented with )
Introduce a comprehensive statistics API so appropriate events can provide detailed information about test processing. (Implemented with )
Allow for a TestCase to expect that a certain number of assertions should have been made. (Implemented with )
Allow for a TestCase to expect that a test finishes before a given timeout has reached. (Implemented with )
Introduce the concept of a "mock bridge" that supports the ability to use a variety of mocking systems. (Implemented with )
Allow hooks to define the order in which they should be ran. (Implemented with )
Allow TestSuite to define which TestCase should be associated by namespace. (Implemented with )
Introduce a DisabledIf(string $method, ?string $reason = null)
attribute that will only disable the test, TestCase
, or TestSuite
if the $method
returns true.
Better differentiate between a test failing with a TestFailedException and a test failing because of an error that was unexpected. (Implemented with )
Allow ability to override which configuration file should be used on the command line.
Design a comprehensive CLI display for showing a variety of test information.
Update the AssertionFailedException
to not require custom methods to display appropriate data. All information that needs to be displayed for a given exception should be part of the getMessage()
Introduce some functionality that allows showing the diff between things that are/should be diffable.
Make expectations on active Loop watchers before and after a test is processed
These are features we'd like to support at some point but are not sure how they would be implemented or where they should fall within the timeline.
Support code coverage
Build artifacts for common test reporting formats
Run each TestSuite in its own parallel Worker
Cache the results of the parser step so we can skip it if possible
Implement ability to define your own plugins defined in async-unit.json
that should be registered with the Application automatically.
Allow filtering the tests that are run based on a TestSuite
, TestCase
, or test name.
Show information about which data set was used when a #[DataProvider]
test fails.
Introduce a concrete logging implementation that can be defined by the async-unit.json
configuration.