//
//  TestCrash.swift
//  orchardgo
//
//  Created by Yaroslav Zozulia on 06.02.2024.
//

import Foundation

class TestCrash {

  static func execute() {
    checkStacktraceMethod1()
  }

  static func checkStacktraceMethod1() {
    NSException.raise(NSExceptionName(rawValue: "CrashReportingService.TestNativeCrash"),
                      format: "CrashReportingService.TestNativeCrash reason",
                      arguments: getVaList([]))
  }
}
