Exemplo n.º 1
0
        public void TestMethod00005()
        {
            var bal = 123;
            var dte = 27.May(2018);
            var lse = LeaseWithRightsDue(30.May(2018));

            CollectorPerfSubRow.GetRightsTarget(bal, dte, lse)
            .Should().Be(bal / 3);
        }
Exemplo n.º 2
0
        public void TestMethod00002()
        {
            var bal = -100;
            var dte = 27.May(2018);
            var lse = new LeaseDTO();

            CollectorPerfSubRow.GetRightsTarget(bal, dte, lse)
            .Should().Be(0);
        }
Exemplo n.º 3
0
 private void OnItemOpened(CollectorPerfSubRow e)
 {
     _dir.MarketState.RefreshStall(e.Lease);
     SoaViewer.Show(e.Lease, _dir);
 }