can't import class in Xcode unit test

I'm trying to import a class with testable however, Im getting undefined symbol error

@testable import is for importing Swift modules, such as your app, not individual classes.

Replace the class name with the name of your app (or framework) target, and you should be able to access your app's classes in the unit tests.

can't import class in Xcode unit test
 
 
Q