Created
November 29, 2017 01:09
-
-
Save larkintuckerllc/63cd2ed881333a272183de12af423aa2 to your computer and use it in GitHub Desktop.
How-to Dagger 2 with Android: Part 2 - 6
This file contains 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.larkintuckerllc.dagger.mocks; | |
import com.larkintuckerllc.dagger.MyExample; | |
import java.util.Date; | |
public class MyExampleImplMock implements MyExample { | |
public long getDate() { | |
return 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment