public void GetHashCodeTest()
        {
            TECConnectionType type1 = new TECConnectionType();
            TECConnectionType type2 = new TECConnectionType();

            TECHardwiredProtocol first = new TECHardwiredProtocol(new List <TECConnectionType>()
            {
                type1, type2
            });
            TECHardwiredProtocol second = new TECHardwiredProtocol(new List <TECConnectionType>()
            {
                type1, type2
            });

            Assert.AreEqual(first.GetHashCode(), second.GetHashCode());
        }