public void GetDuctsOfFanTest()
        {
            Fan          fan          = new Fan(1244249984593821696);
            string       strArchPath  = "D://Users//zheny//Source//Repos//HVAC-Checker//HVAC-Checker//6.2.2-arch.GDB";
            string       strHVACPath  = "D://Users//zheny//Source//Repos//HVAC-Checker//HVAC-Checker//6.2.2-HVAC.GDB";
            HVACFunction hvacFunction = new HVACFunction(strArchPath, strHVACPath);
            List <Duct>  ducts        = HVACFunction.GetDuctsOfFan(fan);

            Assert.IsTrue(ducts.Count() > 0);
        }