public void SaveToJsonTest() { IPersistenceBehavior <Post> saveToJson = new JSONDatabase <Post>(); Post testPost = new Post(saveToJson); var content = new TextContent(); content.PostText = "Hey this is my content"; Assert.Contains("Hey this is my content", content.PostText); }
public void Setup() { this.jsonDatabase = new JSONDatabase(); }