Remove base class complex and confusing variable
neutron base class have base create method like create_network,
create_routers, create_port and create_subnets etc and these
base method append the created resources in base class variable
like cls.ports, cls.sunets etc.
These variable were initially created and used while cleanup the
created resources in corresponding delete methods. But now those
delete methods has been switched to use addClassResourceCleanup.
Few test class still use them for list resources etc which is
hard to find that these were from base class and value is being
populated from derived class test cases.
This commit removes the base class variables and define those
in derived test class wherever they are being used.
Change-Id: I24fdfbdb8a2d7bcb4ccab8e57f1967b13f35f184
6 files changed