OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TestOutput
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Tools/Scripts/webkitpy/common/net/
testoutput.py
34
class
TestOutput
(object):
72
"""Have the files in this
TestOutput
write themselves to the disk at the specified location."""
104
return "
TestOutput
[%s/%s] %s%s" % (self._platform, self._output_type, actual_str, self.name())
126
"""Save the files of this
TestOutput
to the appropriate directory
134
"""Deletes the files that comprise this
TestOutput
from disk. This
141
class TextTestOutput(
TestOutput
):
145
TestOutput
.__init__(self, platform, 'text', [text_file])
154
class ImageTestOutput(
TestOutput
):
161
TestOutput
.__init__(self, platform, 'image', files)
testoutput_unittest.py
28
import
testoutput
namespace
44
class FakeTestOutput(
testoutput
.
TestOutput
):
70
r =
testoutput
.TextTestOutput(None, FakeFile(filename))
78
r =
testoutput
.TextTestOutput(None, FakeFile(filename))
96
r =
testoutput
.TextTestOutput(None, FakeFile('test-actual.txt'))
100
r =
testoutput
.TextTestOutput(None, FakeFile('test-expected.txt'))
104
expected =
testoutput
.TextTestOutput('mac', FakeFile('test-expected.txt'))
105
actual =
testoutput
.TextTestOutput('mac', FakeFile('test-actual.txt'))
110
r1 =
testoutput
.TextTestOutput('mac', FakeFile('test-expected.txt', 'contents')
[
all
...]
/external/v8/tools/
test.py
366
return
TestOutput
(self,
393
class
TestOutput
(object):
[
all
...]
Completed in 347 milliseconds