Files
aircox-radiocampus/aircox/tests/controllers/test_sound_stats.py
2023-06-21 01:37:45 +02:00

48 lines
678 B
Python

import pytest
from aircox.controllers.sound_stats import SoxStats, SoundStats
@pytest.fixture
def sox_stats():
return SoxStats()
@pytest.fixture
def sound_stats():
return SoundStats()
class TestSoxStats:
def test___init__(self):
pass
def test_get(self):
pass
def test_parse(self):
pass
def test_analyse(self):
pass
class TestSoundStats:
def test___init__(self):
pass
def test_get_file_stats(self):
pass
def test_analyze(self):
pass
def test_analyze_no_sample_length(self):
pass
def test_check(self):
pass
def test_resume(self):
pass