# Invite from the transport
inject_wire
{
INVITE sip:B@127.0.0.1 SIP/2.0
Via: SIP/2.0/UDP 127.0.0.1:1234;branch=z9hG4bK0000
Max-Forwards: 70
From: sip:A@inside.com;tag=12345
To: sip:B@inside.com
Call-ID: 0123456789@pc.inside.com
CSeq: 1 INVITE
Contact: <sip:A@127.0.0.1>
Content-Length: 0

}

# See the INVITE be passed up to the TU
expect_tu
{
method=INVITE
timeout=1000
}

# See the 100 Trying provisional response generated by the stack
expect_wire
{
status=100
timeout=1500
}

# Wait for the above to expire
delay
{
timeout=2000
}

# Invite is retranmitted and show up at the transport
inject_wire
{
INVITE sip:B@127.0.0.1 SIP/2.0
Via: SIP/2.0/UDP 127.0.0.1:1234;branch=z9hG4bK0000
Max-Forwards: 70
From: sip:A@inside.com;tag=12345
To: sip:B@inside.com
Call-ID: 0123456789@pc.inside.com
CSeq: 1 INVITE
Contact: <sip:A@127.0.0.1>
Content-Length: 0

}

# See another 100 Trying provisional response generated by the stack
expect_wire
{
status=100
timeout=1500
}

# Wait for the above to expire
delay
{
timeout=2000
}
