diff --git a/gba_test/CHANGELOG.md b/gba_test/CHANGELOG.md new file mode 100644 index 0000000..27bfe45 --- /dev/null +++ b/gba_test/CHANGELOG.md @@ -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. diff --git a/gba_test_macros/CHANGELOG.md b/gba_test_macros/CHANGELOG.md new file mode 100644 index 0000000..ee78184 --- /dev/null +++ b/gba_test_macros/CHANGELOG.md @@ -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.