I have a sub-class of TyphoonAssembly, which contains this factory method:
+ (instancetype)assembly;
I'm trying to use it in a test as follows:
var assembly : ApplicationAssembly! = ApplicationAssembly.assembly()
But get the error 'assembly() is unavailable' (see image).
What's the correct way to create a Swift instance from an objective-C class method.
