We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2640f4 commit 83c73c0Copy full SHA for 83c73c0
tests/TwilioMessageTest.php
@@ -31,4 +31,12 @@ public function it_can_set_the_from()
31
32
$this->assertEquals('+1234567890', $this->message->from);
33
}
34
+
35
+ /** @test */
36
+ public function it_can_return_the_from_using_getter()
37
+ {
38
+ $this->message->from('+1234567890');
39
40
+ $this->assertEquals('+1234567890', $this->message->getFrom());
41
+ }
42
0 commit comments