sdbus_mock: Fix missing bus include

The SdBusMock header uses the bus object but doesn't include the header
with it. Fix this so we can compile in files that don't include the bus.

Tested:
    Files not previously including the bus can now build against this
    header.

Change-Id: I2cb7f2b9758d82570e95bb3187f5aef639ac96bf
Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/sdbusplus/test/sdbus_mock.hpp b/sdbusplus/test/sdbus_mock.hpp
index 4d3909c..be8d0ac 100644
--- a/sdbusplus/test/sdbus_mock.hpp
+++ b/sdbusplus/test/sdbus_mock.hpp
@@ -2,6 +2,7 @@
 
 #include "gmock/gmock.h"
 
+#include <sdbusplus/bus.hpp>
 #include <sdbusplus/sdbus.hpp>
 
 namespace sdbusplus