diff --git a/tests/component_base_test.py b/tests/component_base_test.py new file mode 100644 index 000000000..3c4fe17db --- /dev/null +++ b/tests/component_base_test.py @@ -0,0 +1,7 @@ +from sonic_platform_base.component_base import ComponentBase + +class TestComponentBase: + + def test_get_firmware_update_notification(self): + cpnt = ComponentBase() + assert(cpnt.get_firmware_update_notification(None) == "None")