Exemplo n.º 1
0
        public void Value()
        {
            var req = new StatisticsElement();

            req.Value.Should().Be(0);
            req.Increment();
            req.Value.Should().Be(1);
        }
Exemplo n.º 2
0
 private void TabItem_GotFocus_1(object sender, RoutedEventArgs e)
 {
     PieChartElement.Load();
     StatisticsElement.Load();
     GraphElement.Load();
 }
Exemplo n.º 3
0
        public void Creation()
        {
            var elem = new StatisticsElement();

            elem.Should().NotBeNull();
        }