mirror of
https://github.com/axiomatic-systems/Bento4.git
synced 2026-01-19 00:05:12 +08:00
- adding support for 'extra' parameter in the xml inspector - fixing problems in streams.py and streamtests.py
12 lines
277 B
Python
12 lines
277 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.MemoryByteStream()
|
|
|
|
|