Skip to content

Instantly share code, notes, and snippets.

@olivierperez
Last active March 25, 2016 08:26
Show Gist options
  • Save olivierperez/97797e2d1f35e013a7d6 to your computer and use it in GitHub Desktop.
Save olivierperez/97797e2d1f35e013a7d6 to your computer and use it in GitHub Desktop.
Live Templates for AndroidStudio
- test - Create a new test
# Copyright (C) 2015 Olivier Perez <olivier@olivierperez.fr>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
public static final String EXTRA_$arg_key_copy$ = "EXTRA_$arg_key_copy$";
public static android.content.Intent newInstance(android.content.Context context, $arg_type$ $arg$) {
Intent intent = new Intent(context, $activityClass$.class);
intent.putExtra("EXTRA_$arg_key$", $arg$);
return intent;
}
---------------------------
| arg_type | | | |
| arg | | | |
| activityClass | className() | | |
| arg_key | capitalizeAndUnderscore(arg) | | |
| arg_key_copy | arg_key | | x |
@org.junit.Test
public void should_$METHOD$() {
// Given
$END$
// When
// Then
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment