-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Changelog | ||
|
||
## 0.1.0 - 2024-06-06 | ||
### Added | ||
- `#[test]` attribute for writing tests. | ||
- Test `runner()` for running tests on the Game Boy Advance. | ||
- `TestCase` trait for defining types that can be run on the test runner. | ||
- `Ignore` `enum` to define whether a test should be ignored. | ||
- `ShouldPanic` `enum` to define a test that is expected to panic. | ||
- Runtime for handling running tests on the Game Boy Advance. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Changelog | ||
|
||
## 0.1.0 - 2024-06-06 | ||
### Added | ||
- `#[test]` attribute for writing tests. | ||
- Support for `#[ignore]` attribute to mark tests as ignored. | ||
- Support for `#[should_panic]` to define tests that are expected to panic. |