* @brief Test setting the default network device * * This function tests the ability to set a network device as the default * network interface for the system. */
| 387 | * network interface for the system. |
| 388 | */ |
| 389 | static void test_netdev_set_default_netdev(void) |
| 390 | { |
| 391 | netdev_set_default(netdev_get_by_name(RT_UTEST_DEFAULT_NETDEV_NAME)); |
| 392 | uassert_true(RT_TRUE); |
| 393 | } |
| 394 | |
| 395 | /** |
| 396 | * @brief Test IP address conversion functions |
nothing calls this directly
no test coverage detected