clang-tidy: Enable modernize-use-equals-default check

This check replaces default bodies of special member functions
with = default;.

The explicitly defaulted function declarations enable more
opportunities in optimization, because the compiler might treat
explicitly defaulted functions as trivial.

Signed-off-by: George Liu <liuxiwei@ieisystem.com>
Change-Id: I1860b4c1f416f892ae224f9fcd83170f1b63043a
diff --git a/test/utest.cpp b/test/utest.cpp
index 2bd222b..361e9c7 100644
--- a/test/utest.cpp
+++ b/test/utest.cpp
@@ -16,10 +16,7 @@
     {
         // Nothing here
     }
-    ~LedTest()
-    {
-        // Leaving up to auto cleanup.
-    }
+    ~LedTest() = default;
 };
 
 /** @brief Assert Single LED to On */