class Redbreast::TemplateGenerator::ImageTest::Swift

Used for creating image tests in swift.

Public Instance Methods

template() click to toggle source
# File lib/redbreast/template_generators/tests/images/swift_images_tests_template_generator.rb, line 9
        def template
<<~TEMPLATE
  import UIKit
  import XCTest
  @testable import <%= bundle[:testableImport] %>

  // THIS FILE IS AUTOGENERATED, DO NOT EDIT BY HAND
  class <%= File.basename(bundle[:outputTestPathImages], ".*") %>: XCTestCase {

      func testIfImagesArePresent() {
    <%= create_swift_test_cases(names: asset_names, declaration: '_ = UIImage.', app_name: app_name) %>
      }
  }
TEMPLATE
        end