public void Given_Json_Content_And_Must_Return_Not_Null()
        {
            //Arrange
            string content = "{'ip': '127.0.0.0'}";

            restClientJsonCore = this.CreateRestClientJsonCore();

            //Act
            var result = restClientJsonCore.RestContent(content);

            //Assert
            Assert.IsNotNull(result);
        }
 public void TestInitialize()
 {
     this.mockRepository = new MockRepository(MockBehavior.Loose);
     restClientJsonCore  = this.CreateRestClientJsonCore();
 }