コード例 #1
0
        public void Value()
        {
            var req = new StatisticsElement();

            req.Value.Should().Be(0);
            req.Increment();
            req.Value.Should().Be(1);
        }
コード例 #2
0
ファイル: MainWindow.xaml.cs プロジェクト: YissacharB/PL
 private void TabItem_GotFocus_1(object sender, RoutedEventArgs e)
 {
     PieChartElement.Load();
     StatisticsElement.Load();
     GraphElement.Load();
 }
コード例 #3
0
        public void Creation()
        {
            var elem = new StatisticsElement();

            elem.Should().NotBeNull();
        }