add isClosed, notes, cost, fileAttachments to bid
This commit is contained in:
parent
d68c3bc66c
commit
04c498afb6
7 changed files with 60 additions and 4 deletions
|
|
@ -10,7 +10,16 @@ class BidTest extends TestCase
|
|||
public function test_bid_link_generated(): void
|
||||
{
|
||||
$bidId = '124e56abf82';
|
||||
$bid = new Bid($bidId, 0, 0, false);
|
||||
$bid = new Bid(
|
||||
$bidId,
|
||||
0,
|
||||
0,
|
||||
false,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
);
|
||||
$this->assertEquals(
|
||||
"https://freightquotes.com/bid/$bidId",
|
||||
$bid->getBidLink()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue