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
| package com.example.hokanla.rxplayground; | |
| import org.junit.Before; | |
| import org.junit.Test; | |
| import org.mockito.Mock; | |
| import org.mockito.MockitoAnnotations; | |
| import rx.Observable; | |
| import rx.Subscription; | |
| import rx.subjects.PublishSubject; |
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
| package gitit.com.gitit.service.contract; | |
| /** | |
| * 2015 | |
| * Created by ho on 05/08/15. | |
| */ | |
| public class Comment { | |
| public User user; | |
| public String body; |
NewerOlder