microsoft/testsuites/network/synthetic.py [51:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self._initialize_nic_info(environment)

    @TestCaseMetadata(
        description="""
        This case verify VM works well after attaching 7 extra synthetic nics
         in one time.

        Steps,
        1. Provision VM with 1 network interface with synthetic network.
        2. Add 7 extra network interfaces in one time.
        3. Check each nic has an ip address.
        """,
        priority=2,
        requirement=simple_requirement(
            network_interface=schema.NetworkInterfaceOptionSettings(
                data_path=schema.NetworkDataPath.Synthetic,
                max_nic_count=8,
            ),
        ),
    )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



microsoft/testsuites/network/synthetic.py [79:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self._initialize_nic_info(environment)

    @TestCaseMetadata(
        description="""
        This case verify VM works well after attaching 7 extra synthetic nics
         one by one.

        Steps,
        1. Provision VM with 1 network interface with synthetic network.
        2. Add 7 extra network interfaces one by one.
        3. Check each nic has an ip address.
        """,
        priority=2,
        requirement=simple_requirement(
            network_interface=schema.NetworkInterfaceOptionSettings(
                data_path=schema.NetworkDataPath.Synthetic,
                max_nic_count=8,
            ),
        ),
    )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



