Sign in
chromium
/
external
/
github.com
/
antlr
/
antlr4
/
refs/heads/dev
/
.
/
runtime
/
Python3
/
tests
/
TestFileStream.py
blob: a8ba9da060e82c289e3ea7f0c25c12b87fedbf56 [
file
] [
log
] [
blame
] [
edit
]
import
unittest
from
antlr4
.
FileStream
import
FileStream
class
TestFileStream
(
unittest
.
TestCase
):
def
testStream
(
self
):
stream
=
FileStream
(
__file__
)
self
.
assertTrue
(
stream
.
size
>
0
)