// Copyright 2013 The Flutter Authors | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
import Flutter | |
import XCTest | |
@testable import interactive_media_ads | |
final class ViewTests: XCTestCase { | |
func testPigeonDefaultConstructor() { | |
let registrar = TestProxyApiRegistrar() | |
let api = registrar.apiDelegate.pigeonApiUIView(registrar) | |
let instance = try? api.pigeonDelegate.pigeonDefaultConstructor( | |
pigeonApi: api) | |
XCTAssertNotNil(instance) | |
} | |
} |