// // SmokeTests.swift // Zyquo Atlas // // Author: Simon-Pierre Boucher // Mail: contact@spboucher.ai // // Phase 1 smoke test — proves the test target links against ZyquoAtlas. // Real coverage (SSE parser, SecureKeyStore, ContentExtractor) arrives with // the ported provider layer and content pipeline in later phases. // import Foundation import Testing @testable import ZyquoAtlas @Suite struct SmokeTests { @Test func harnessPlaceholderSucceeds() async { let status = await VerifyHarness.run(arguments: ["--verify"]) #expect(status == 0) } }