Reader small image

You're reading from  Hands-On Embedded Programming with Qt

Product typeBook
Published inJul 2019
Reading LevelIntermediate
PublisherPackt
ISBN-139781789952063
Edition1st Edition
Languages
Tools
Right arrow
Author (1)
John Werner
John Werner
author image
John Werner

John Werner is an internationally published author, engineer, consultant, and conference speaker with more than 15 years' experience. He has earned patents for inventions ranging from Inkjet printers to automotive ignition systems. John was one of the early users of Qt on QNX and contributed to the early knowledge of how to make it work. He is a contributor to the Qt-related information on Stack Exchange. He is currently a senior software engineer, specializing in Qt development, for Caliber Imaging & Diagnostics.
Read more about John Werner

Right arrow

Mocking the hardware

So far, everything we need to do can be done on both the host and target without any changes, but what if we need a special sensor, say a temperature sensor, that was only available on the target and not on the host? How could we check our code on the host?

The answer is mocking. You may have heard of a Mockingbird, or Mockingjay. They are birds that repeat what they hear. They mock, or pretend to be something else. We can do the same thing in software. If we can specify the interface (what inputs and outputs it uses), we can create something that acts just like the real thing for a controlled set of inputs.

Once we have a mock, we can test the rest of our system against the mock and verify whether the rest of the system sends the expected signals and handles the responses correctly. We could even generate error or fault responses without having to create...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Hands-On Embedded Programming with Qt
Published in: Jul 2019Publisher: PacktISBN-13: 9781789952063

Author (1)

author image
John Werner

John Werner is an internationally published author, engineer, consultant, and conference speaker with more than 15 years' experience. He has earned patents for inventions ranging from Inkjet printers to automotive ignition systems. John was one of the early users of Qt on QNX and contributed to the early knowledge of how to make it work. He is a contributor to the Qt-related information on Stack Exchange. He is currently a senior software engineer, specializing in Qt development, for Caliber Imaging & Diagnostics.
Read more about John Werner