| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function testProposalStore() |
||
| 23 | { |
||
| 24 | $client = $this->getClientWithMockedPost('proposals-store.json'); |
||
| 25 | |||
| 26 | $client = new ProposalsClient($this->getConfig(), $client); |
||
| 27 | $object = $client->store( |
||
| 28 | 'test', |
||
| 29 | 'forceHeader', |
||
| 30 | 'new Text', |
||
| 31 | 'en-GB', |
||
| 32 | 'mobile', |
||
| 33 | 'versionControl' |
||
| 34 | ); |
||
| 35 | |||
| 36 | $this->assertInstanceOf(Proposal::class, $object); |
||
| 37 | } |
||
| 51 |