Move OpenVPNAdapter tests to their own subfolder

This commit is contained in:
Sergey Abramchuk
2020-03-06 12:25:09 +03:00
parent e793320734
commit 63f8838172
11 changed files with 0 additions and 272 deletions
+21
View File
@@ -0,0 +1,21 @@
//
// CustomFlow.swift
// OpenVPN Adapter
//
// Created by Sergey Abramchuk on 28.10.2017.
//
import NetworkExtension
@testable import OpenVPNAdapter
class CustomFlow: NSObject, OpenVPNAdapterPacketFlow {
func readPackets(completionHandler: @escaping ([Data], [NSNumber]) -> Void) {
}
func writePackets(_ packets: [Data], withProtocols protocols: [NSNumber]) -> Bool {
return true
}
}