test: use `#include` rather than `#import`
`#import` is an extension which behaves differently in different target. On
Windows, it is used to import type libraries (for COM). The options are to
either use `#include` or enable Objective-C interop. Use the former since there
is no Objective-C specific behaviour needed here.