tellme/Tests/CoreAudioTests/AudioEngineTests.swift
Felipe M. 54c3b65d4a
Complete Phase 4: Comprehensive preferences, localization, and UX polish
- Rename application from MenuWhisper to Tell me with new domain com.fmartingr.tellme
- Implement comprehensive preferences window with 6 tabs (General, Models, Text Insertion, Interface, Advanced, Permissions)
- Add full English/Spanish localization for all UI elements
- Create functional onboarding flow with model download capability
- Implement preview dialog for transcription editing
- Add settings export/import functionality
- Fix HUD content display issues and add comprehensive permission checking
- Enhance build scripts and app bundle creation for proper localization support
2025-09-19 13:55:46 +02:00

10 lines
No EOL
247 B
Swift

import XCTest
@testable import TellMeAudio
final class AudioEngineTests: XCTestCase {
func testAudioEngineInitialization() {
let engine = AudioEngine()
XCTAssertNotNil(engine)
XCTAssertFalse(engine.isCapturing)
}
}