public void TestShouldValueNoteIdSerialiseTrueWhenValueNoteDefined()
 {
     var point = new TrendDataPoint(new CoreDataSet { ValueNoteId = 100 });
     Assert.IsTrue(point.ShouldSerializeValueNoteId());
 }
 public void TestShouldValueNoteIdSerialiseFalseWhenNoValueNote()
 {
     var point = new TrendDataPoint(new CoreDataSet { ValueNoteId = CoreDataSet.NoValueNote });
     Assert.IsFalse(point.ShouldSerializeValueNoteId());
 }