Skip to content

Instantly share code, notes, and snippets.

@hacker1024
Created October 11, 2020 12:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hacker1024/5fc8b358c177b5f65308e07dbb1055ba to your computer and use it in GitHub Desktop.
Save hacker1024/5fc8b358c177b5f65308e07dbb1055ba to your computer and use it in GitHub Desktop.
An IntelliJ IDEA live template for Dart testing implementing Reso Coder's "Arrange, Act, Assert" structure
test(
'should $TITLE$',
() async {
// Arrange
$ARRANGE$
// Act
$ACT$
// Assert
$ASSERT$
},
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment