public void LimitExecutorResetSightsTest()
        {
            BillDemandBusinessService target = new BillDemandBusinessService(); // TODO: Initialize to an appropriate value
            Guid billDemandUid = new Guid();                                    // TODO: Initialize to an appropriate value

            target.LimitExecutorResetSights(billDemandUid);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void UpdateBillDemandStateTest()
        {
            BillDemandBusinessService target = new BillDemandBusinessService(); // TODO: Initialize to an appropriate value
            WorkflowState             state  = null;                            // TODO: Initialize to an appropriate value
            Guid billDemandUid = new Guid();                                    // TODO: Initialize to an appropriate value

            target.UpdateBillDemandState(state, billDemandUid);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void GetBillDemandValueTest()
        {
            BillDemandBusinessService target = new BillDemandBusinessService(); // TODO: Initialize to an appropriate value
            Guid    billDemandUid            = new Guid();                      // TODO: Initialize to an appropriate value
            Decimal expected = new Decimal();                                   // TODO: Initialize to an appropriate value
            Decimal actual;

            actual = target.GetBillDemandValue(billDemandUid);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void UpdateBillDemandStateTest1()
        {
            BillDemandBusinessService target           = new BillDemandBusinessService(); // TODO: Initialize to an appropriate value
            WorkflowState             initialState     = null;                            // TODO: Initialize to an appropriate value
            WorkflowState             destinationState = null;                            // TODO: Initialize to an appropriate value
            Guid   billDemandUid = new Guid();                                            // TODO: Initialize to an appropriate value
            Guid   initiatorId   = new Guid();                                            // TODO: Initialize to an appropriate value
            string comment       = string.Empty;                                          // TODO: Initialize to an appropriate value

            //target.UpdateBillDemandState(initialState, destinationState, billDemandUid, initiatorId, comment);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void TestExternalServicesBillDemandBusinessService()
        {
            var serv = new BillDemandBusinessService();

            serv.GetBillDemandForExport(new Guid("DBCAC0BF-0B7F-4C3D-A17E-FCD8A2A74427"));
        }