/home/techb158/ileadtechnology.com/SSM/vendor/swiftmailer/swiftmailer/tests/bug/Swift
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug71Test.php (497B)
message = new Swift_Message('test');
}
public function testCallingToStringAfterSettingNewBodyReflectsChanges()
{
$this->message->setBody('BODY1');
$this->assertRegExp('/BODY1/', $this->message->toString());
$this->message->setBody('BODY2');
$this->assertRegExp('/BODY2/', $this->message->toString());
}
}