I am using twitter4j and developing StatusListener class and need a way to just create a mock Status object so I can test my class. I don't want to have to actually connect to the API while I am developing.
Is there a way to create a Status object from json string? I just want to download one status from Twitter, save it somewhere as a string and then reuse it to create Status object while I'm developing.
Can someone tell me how to do this?