コード例 #1
0
        public void TestMeasure1()
        {
            var chart = new NetworkView();

            chart.RaiseEvent(new RoutedEventArgs(FrameworkElement.LoadedEvent));
            new Action(() => chart.Measure(new System.Windows.Size(double.MaxValue, double.MaxValue))).ShouldNotThrow();
            chart.DesiredSize.Should().Be(new System.Windows.Size(), "because the chart doesn't have anything to display and thus consumes no area");
        }