github.com/F4RD1N/gomobile@v1.0.1/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  // +build ignore
     6  
     7  #import <Foundation/Foundation.h>
     8  #import <XCTest/XCTest.h>
     9  @import Testpkg;
    10  
    11  @interface tests : XCTestCase
    12  
    13  @end
    14  
    15  @implementation tests
    16  
    17  - (void)testBasics {
    18  	CustomTestpkgHi();
    19  }
    20  
    21  @end