Exemple #1
0
        public void Test_ENodebIntraFreqHoView()
        {
            var info = new IntraRatHoComm
            {
                eNodeB_Id = 12,
                IntraFreqHoRprtInterval = 34,
                IntraRatHoRprtAmount    = 56,
                IntraRatHoMaxRprtCell   = 78,
                IntraFreqHoA3TrigQuan   = 90,
                IntraFreqHoA3RprtQuan   = 111
            };
            var item = info.MapTo <ENodebIntraFreqHoView>();

            item.ENodebId.ShouldBe(12);
            item.ReportInterval.ShouldBe(34);
            item.ReportAmount.ShouldBe(56);
            item.MaxReportCellNum.ShouldBe(78);
            item.TriggerQuantity.ShouldBe(90);
            item.ReportQuantity.ShouldBe(111);
        }
Exemple #2
0
        public void Test_ENodebInterFreqHoView()
        {
            var info = new IntraRatHoComm
            {
                eNodeB_Id                 = 12,
                InterFreqHoA4RprtQuan     = 34,
                InterFreqHoA4TrigQuan     = 5,
                InterFreqHoA1A2TrigQuan   = 67,
                A3InterFreqHoA1A2TrigQuan = 8,
                InterFreqHoRprtInterval   = 90
            };
            var item = info.MapTo <ENodebInterFreqHoView>();

            item.ENodebId.ShouldBe(12);
            item.InterFreqHoA4RprtQuan.ShouldBe(34);
            item.InterFreqHoA4TrigQuan.ShouldBe(5);
            item.InterFreqHoA1TrigQuan.ShouldBe(67);
            item.InterFreqHoA2TrigQuan.ShouldBe(67);
            item.A3InterFreqHoA1TrigQuan.ShouldBe(8);
            item.A3InterFreqHoA2TrigQuan.ShouldBe(8);
            item.InterFreqHoRprtInterval.ShouldBe(90);
        }
Exemple #3
0
 public void Test_ENodebInterFreqHoView()
 {
     var info = new IntraRatHoComm
     {
         eNodeB_Id = 12,
         InterFreqHoA4RprtQuan = 34,
         InterFreqHoA4TrigQuan = 5,
         InterFreqHoA1A2TrigQuan = 67,
         A3InterFreqHoA1A2TrigQuan = 8,
         InterFreqHoRprtInterval = 90
     };
     var item = info.MapTo<ENodebInterFreqHoView>();
     item.ENodebId.ShouldBe(12);
     item.InterFreqHoA4RprtQuan.ShouldBe(34);
     item.InterFreqHoA4TrigQuan.ShouldBe(5);
     item.InterFreqHoA1TrigQuan.ShouldBe(67);
     item.InterFreqHoA2TrigQuan.ShouldBe(67);
     item.A3InterFreqHoA1TrigQuan.ShouldBe(8);
     item.A3InterFreqHoA2TrigQuan.ShouldBe(8);
     item.InterFreqHoRprtInterval.ShouldBe(90);
 }
Exemple #4
0
 public void Test_ENodebIntraFreqHoView()
 {
     var info = new IntraRatHoComm
     {
         eNodeB_Id = 12,
         IntraFreqHoRprtInterval = 34,
         IntraRatHoRprtAmount = 56,
         IntraRatHoMaxRprtCell = 78,
         IntraFreqHoA3TrigQuan = 90,
         IntraFreqHoA3RprtQuan = 111
     };
     var item = info.MapTo<ENodebIntraFreqHoView>();
     item.ENodebId.ShouldBe(12);
     item.ReportInterval.ShouldBe(34);
     item.ReportAmount.ShouldBe(56);
     item.MaxReportCellNum.ShouldBe(78);
     item.TriggerQuantity.ShouldBe(90);
     item.ReportQuantity.ShouldBe(111);
 }