-
Notifications
You must be signed in to change notification settings - Fork 4
/
stdout.xml
executable file
·37 lines (30 loc) · 1.15 KB
/
stdout.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8" ?>
<Peach version="1.0"
author="Christoph Diehl"
description="Target description for debugging PeachPits">
<Configuration>
<Macro name="TestName" value="StdoutTest"/>
<Macro name="PublisherName" value="StdoutHex"/>
</Configuration>
<Data name="FileSample" fileName="$FileSamplePath$" maxFileSize="$FileSampleMaxFileSize$"/>
<StateModel name="StdoutStateModel" initialState="Initial">
<State name="Initial">
<Action name="Output" type="output">
<DataModel ref="$DataModel$"/>
<Data name="Sample" ref="FileSample"/>
</Action>
<Action type="close"/>
</State>
</StateModel>
<Test name="StdoutTest">
<Strategy class="$Strategy$" params="$StrategyParams$"/>
<StateModel ref="StdoutStateModel"/>
<Publisher class="stdout.$PublisherName$"/>
</Test>
<Run name="DefaultRun" description="Run (Console)">
<Test ref="$TestName$"/>
<Logger class="logger.Filesystem">
<Param name="path" value="Logs/$PitName$"/>
</Logger>
</Run>
</Peach>