FileStorageTests.swift 534 B

1234567891011121314151617181920
  1. @testable import FreeAPS
  2. import XCTest
  3. class FileStorageTests: XCTestCase {
  4. let fileStorage = BaseFileStorage()
  5. struct DummyObject: JSON {
  6. let id: String
  7. let value: Decimal
  8. }
  9. override func setUpWithError() throws {
  10. // Put setup code here. This method is called before the invocation of each test method in the class.
  11. }
  12. override func tearDownWithError() throws {
  13. // Put teardown code here. This method is called after the invocation of each test method in the class.
  14. }
  15. }