github.com/SpiderOak/mobile@v0.0.0-20221129182558-6f541b59af45/bind/objc/SeqCustom.m (about) 1 // Copyright 2018 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build ignore 6 // +build ignore 7 8 #import <Foundation/Foundation.h> 9 #import <XCTest/XCTest.h> 10 @import Testpkg; 11 12 @interface tests : XCTestCase 13 14 @end 15 16 @implementation tests 17 18 - (void)testBasics { 19 CustomTestpkgHi(); 20 } 21 22 @end