Skip to content

Instantly share code, notes, and snippets.

@yarn-rp
Last active July 30, 2023 00:04
Show Gist options
  • Save yarn-rp/dd226a3a1f0f7ef39edf2241e105d98c to your computer and use it in GitHub Desktop.
Save yarn-rp/dd226a3a1f0f7ef39edf2241e105d98c to your computer and use it in GitHub Desktop.
testing example using consts and MyClass
void main() {
 test('Value equality', () {
const a = MyClass(1);
const b = MyClass(1);
expect(a, b); // The props is not invoked.
 });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment