One option is to actually create a mock Status object using a testing framework like Mockito .
Until you know exactly what the Status object should return, then this will be one of the methods that does not require any connection to the Twitter API.
Say, for example, that we have a YourClass.extractStatusText method that will extract the status text from the Status object and return it.
With Mockito, we can do the following:
import static org.mockito.Mockito.mock;
source share