tests()

in src/langs/swift/package_info.js [43:62]


  tests() {
    this.renderAuto(
      path.join(__dirname, './files/XCTestManifests.swift.tmpl'),
      path.join(this.config.dir, `Tests/${this.package}/XCTestManifests.swift`), {
        name: this.package
      }
    );
    this.renderAuto(
      path.join(__dirname, './files/TestCase.swift.tmpl'),
      path.join(this.config.dir, `Tests/${this.package}/${this.package}Tests.swift`), {
        name: this.package
      }
    );
    this.renderAuto(
      path.join(__dirname, './files/LinuxMain.swift.tmpl'),
      path.join(this.config.dir, 'Tests/LinuxMain.swift'), {
        name: this.package
      }
    );
  }