"Unit testing" means that, in addition to the implementation code, you also write a "test driver" that puts the implementation code through a set of trials, checking the returns for correctness. Note that this is done during development / testing - the "test driver" is not shipped with the released code.

The idea is that...

Unit testing is a great way to improve the reliability and correctness of your code. However, it requires that the code to-be-tested actually can be run under control of the test driver. It should be easy to see where this becomes tricky. While it should be possible to test most kernel functions in a "testbed" test driver, the really "juicy" stuff like interrupt handling, process dispatching or memory management are probably not unit-testable.

Alternative / Additional Option: Run-Time Self-Tests

As many of those tests may hang, you're suggested to print what test you're running before you know if the test was successful or not.