Last active
March 25, 2016 08:26
-
-
Save olivierperez/97797e2d1f35e013a7d6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Live Templates for AndroidStudio | |
- test - Create a new test | |
# Copyright (C) 2015 Olivier Perez <[email protected]> | |
# 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/>. |
This file contains hidden or 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
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 | |
This file contains hidden or 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
@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