public void TestCanSetSystemProperties()
 {
     var sysProperties = new SystemProperties()
     {
         CreatedDateTime = DateTime.Now,
         Locale = "en-US"
     };
     var mock = new ContentfulItemBaseMock {SystemProperties = sysProperties};
     Assert.AreEqual(sysProperties, mock.SystemProperties);
 }
 public void TestCanSetSystemProperties()
 {
     var systemProperty = new SystemProperties();
     var errorResponse = new ErrorResponse {SystemProperties = systemProperty};
     Assert.AreEqual(systemProperty, errorResponse.SystemProperties);
 }