public CoverageInfo(
				string basePath, string languageName, SharingMethod sharingMethod) {
			SharingMethod = sharingMethod;
			BasePath = basePath;
			LanguageName = languageName;
			Targets = new List<CoverageElement>();
			TargetGroups = new List<CoverageElementGroup>();

			StatementRanges = new List<Tuple<int, int>>();
			BranchRanges = new List<Tuple<int, int>>();
			BranchConditionRanges = new List<Tuple<int, int>>();
			SwitchRanges = new List<Tuple<int, int>>();
		}
Exemplo n.º 2
0
        public CoverageInfo(
            string basePath, string languageName, SharingMethod sharingMethod)
        {
            SharingMethod = sharingMethod;
            BasePath      = basePath;
            LanguageName  = languageName;
            Targets       = new List <CoverageElement>();
            TargetGroups  = new List <CoverageElementGroup>();

            StatementRanges       = new List <Tuple <int, int> >();
            BranchRanges          = new List <Tuple <int, int> >();
            BranchConditionRanges = new List <Tuple <int, int> >();
            SwitchRanges          = new List <Tuple <int, int> >();
        }