final List<String> hashTagContents = new ArrayList<String>();
hashTagContents.add("#there");
hashTagContents.add("#potato");
final List<HashTag> hashTags = new ArrayList<HashTag>();
hashTags.add(new HashTag("#there"));
hashTags.add(new HashTag("#potato"));
context.checking(new Expectations()
{
{
allowing(activity).getId();