mirror of
https://github.com/axiomatic-systems/Bento4.git
synced 2026-01-19 00:05:12 +08:00
12 lines
273 B
Python
12 lines
273 B
Python
import bento4.streams as bt4s
|
|
import os.path as path
|
|
import unittest
|
|
|
|
BENTO4_TEST_DATA_DIR = path.join(path.dirname(__file__), '..', 'Data')
|
|
|
|
class StreamTester(unittest.TestCase):
|
|
|
|
def test_memorystream(self):
|
|
stream = bt4s.MemoryStream()
|
|
|
|
|