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
| alias ll='ls -l' | |
| alias la='ls -la' | |
| alias sl='ls' | |
| alias cd..='cd ..' | |
| alias gti='git' | |
| alias gz='tar czvf' | |
| alias ugz='tar xzvf' |
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 class BookPresentationTest { | |
| @Test public void is_parcelable() { | |
| BookPresentation bookPresentation = createFullBookPresentation(); | |
| Parcel parcel = MockParcel.obtain(); | |
| bookPresentation.writeToParcel(parcel, bookPresentation.describeContents()); | |
| parcel.setDataPosition(0); | |
| BookPresentation createdFromParcel = BookPresentation.CREATOR.createFromParcel(parcel); | |
| assertThat(createdFromParcel.getIdCalendar(), is(1)); |