from pathlib import Path
ROOT=Path(__file__).resolve().parent
SRC=(ROOT/'heart8772_position.py').read_text(encoding='utf-8')
def test_heart_origin_exchange_log():
    assert 'ORIGIN_REQ act=' in SRC
    assert 'ORIGIN_RES ok=' in SRC
    assert 'HEART8772_BUILD_VERSION = "2.3.8.149"' in SRC
    assert 'actual mouse' not in ''
if __name__=='__main__':
    test_heart_origin_exchange_log(); print('OK test_heart8772_origin_exchange_log_v191')
