ImagickDrawTest.class.php 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480
  1. <?php
  2. /**
  3. * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:59.
  4. */
  5. class ImagickDrawTest extends PHPUnit_Framework_TestCase
  6. {
  7. /**
  8. * @var ImagickDraw
  9. */
  10. protected $object;
  11. /**
  12. * Sets up the fixture, for example, opens a network connection.
  13. * This method is called before a test is executed.
  14. */
  15. protected function setUp()
  16. {
  17. $this->object = new ImagickDraw;
  18. }
  19. /**
  20. * Tears down the fixture, for example, closes a network connection.
  21. * This method is called after a test is executed.
  22. */
  23. protected function tearDown()
  24. {
  25. }
  26. /**
  27. * @covers ImagickDraw::resetvectorgraphics
  28. * @todo Implement testResetvectorgraphics().
  29. */
  30. public function testResetvectorgraphics()
  31. {
  32. // Remove the following lines when you implement this test.
  33. $this->markTestIncomplete(
  34. 'This test has not been implemented yet.'
  35. );
  36. }
  37. /**
  38. * @covers ImagickDraw::gettextkerning
  39. * @todo Implement testGettextkerning().
  40. */
  41. public function testGettextkerning()
  42. {
  43. // Remove the following lines when you implement this test.
  44. $this->markTestIncomplete(
  45. 'This test has not been implemented yet.'
  46. );
  47. }
  48. /**
  49. * @covers ImagickDraw::settextkerning
  50. * @todo Implement testSettextkerning().
  51. */
  52. public function testSettextkerning()
  53. {
  54. // Remove the following lines when you implement this test.
  55. $this->markTestIncomplete(
  56. 'This test has not been implemented yet.'
  57. );
  58. }
  59. /**
  60. * @covers ImagickDraw::gettextinterwordspacing
  61. * @todo Implement testGettextinterwordspacing().
  62. */
  63. public function testGettextinterwordspacing()
  64. {
  65. // Remove the following lines when you implement this test.
  66. $this->markTestIncomplete(
  67. 'This test has not been implemented yet.'
  68. );
  69. }
  70. /**
  71. * @covers ImagickDraw::settextinterwordspacing
  72. * @todo Implement testSettextinterwordspacing().
  73. */
  74. public function testSettextinterwordspacing()
  75. {
  76. // Remove the following lines when you implement this test.
  77. $this->markTestIncomplete(
  78. 'This test has not been implemented yet.'
  79. );
  80. }
  81. /**
  82. * @covers ImagickDraw::setfillcolor
  83. * @todo Implement testSetfillcolor().
  84. */
  85. public function testSetfillcolor()
  86. {
  87. // Remove the following lines when you implement this test.
  88. $this->markTestIncomplete(
  89. 'This test has not been implemented yet.'
  90. );
  91. }
  92. /**
  93. * @covers ImagickDraw::setfillalpha
  94. * @todo Implement testSetfillalpha().
  95. */
  96. public function testSetfillalpha()
  97. {
  98. // Remove the following lines when you implement this test.
  99. $this->markTestIncomplete(
  100. 'This test has not been implemented yet.'
  101. );
  102. }
  103. /**
  104. * @covers ImagickDraw::setresolution
  105. * @todo Implement testSetresolution().
  106. */
  107. public function testSetresolution()
  108. {
  109. // Remove the following lines when you implement this test.
  110. $this->markTestIncomplete(
  111. 'This test has not been implemented yet.'
  112. );
  113. }
  114. /**
  115. * @covers ImagickDraw::setstrokecolor
  116. * @todo Implement testSetstrokecolor().
  117. */
  118. public function testSetstrokecolor()
  119. {
  120. // Remove the following lines when you implement this test.
  121. $this->markTestIncomplete(
  122. 'This test has not been implemented yet.'
  123. );
  124. }
  125. /**
  126. * @covers ImagickDraw::setstrokealpha
  127. * @todo Implement testSetstrokealpha().
  128. */
  129. public function testSetstrokealpha()
  130. {
  131. // Remove the following lines when you implement this test.
  132. $this->markTestIncomplete(
  133. 'This test has not been implemented yet.'
  134. );
  135. }
  136. /**
  137. * @covers ImagickDraw::setstrokewidth
  138. * @todo Implement testSetstrokewidth().
  139. */
  140. public function testSetstrokewidth()
  141. {
  142. // Remove the following lines when you implement this test.
  143. $this->markTestIncomplete(
  144. 'This test has not been implemented yet.'
  145. );
  146. }
  147. /**
  148. * @covers ImagickDraw::clear
  149. * @todo Implement testClear().
  150. */
  151. public function testClear()
  152. {
  153. // Remove the following lines when you implement this test.
  154. $this->markTestIncomplete(
  155. 'This test has not been implemented yet.'
  156. );
  157. }
  158. /**
  159. * @covers ImagickDraw::circle
  160. * @todo Implement testCircle().
  161. */
  162. public function testCircle()
  163. {
  164. // Remove the following lines when you implement this test.
  165. $this->markTestIncomplete(
  166. 'This test has not been implemented yet.'
  167. );
  168. }
  169. /**
  170. * @covers ImagickDraw::annotation
  171. * @todo Implement testAnnotation().
  172. */
  173. public function testAnnotation()
  174. {
  175. // Remove the following lines when you implement this test.
  176. $this->markTestIncomplete(
  177. 'This test has not been implemented yet.'
  178. );
  179. }
  180. /**
  181. * @covers ImagickDraw::settextantialias
  182. * @todo Implement testSettextantialias().
  183. */
  184. public function testSettextantialias()
  185. {
  186. // Remove the following lines when you implement this test.
  187. $this->markTestIncomplete(
  188. 'This test has not been implemented yet.'
  189. );
  190. }
  191. /**
  192. * @covers ImagickDraw::settextencoding
  193. * @todo Implement testSettextencoding().
  194. */
  195. public function testSettextencoding()
  196. {
  197. // Remove the following lines when you implement this test.
  198. $this->markTestIncomplete(
  199. 'This test has not been implemented yet.'
  200. );
  201. }
  202. /**
  203. * @covers ImagickDraw::setfont
  204. * @todo Implement testSetfont().
  205. */
  206. public function testSetfont()
  207. {
  208. // Remove the following lines when you implement this test.
  209. $this->markTestIncomplete(
  210. 'This test has not been implemented yet.'
  211. );
  212. }
  213. /**
  214. * @covers ImagickDraw::setfontfamily
  215. * @todo Implement testSetfontfamily().
  216. */
  217. public function testSetfontfamily()
  218. {
  219. // Remove the following lines when you implement this test.
  220. $this->markTestIncomplete(
  221. 'This test has not been implemented yet.'
  222. );
  223. }
  224. /**
  225. * @covers ImagickDraw::setfontsize
  226. * @todo Implement testSetfontsize().
  227. */
  228. public function testSetfontsize()
  229. {
  230. // Remove the following lines when you implement this test.
  231. $this->markTestIncomplete(
  232. 'This test has not been implemented yet.'
  233. );
  234. }
  235. /**
  236. * @covers ImagickDraw::setfontstyle
  237. * @todo Implement testSetfontstyle().
  238. */
  239. public function testSetfontstyle()
  240. {
  241. // Remove the following lines when you implement this test.
  242. $this->markTestIncomplete(
  243. 'This test has not been implemented yet.'
  244. );
  245. }
  246. /**
  247. * @covers ImagickDraw::setfontweight
  248. * @todo Implement testSetfontweight().
  249. */
  250. public function testSetfontweight()
  251. {
  252. // Remove the following lines when you implement this test.
  253. $this->markTestIncomplete(
  254. 'This test has not been implemented yet.'
  255. );
  256. }
  257. /**
  258. * @covers ImagickDraw::getfont
  259. * @todo Implement testGetfont().
  260. */
  261. public function testGetfont()
  262. {
  263. // Remove the following lines when you implement this test.
  264. $this->markTestIncomplete(
  265. 'This test has not been implemented yet.'
  266. );
  267. }
  268. /**
  269. * @covers ImagickDraw::getfontfamily
  270. * @todo Implement testGetfontfamily().
  271. */
  272. public function testGetfontfamily()
  273. {
  274. // Remove the following lines when you implement this test.
  275. $this->markTestIncomplete(
  276. 'This test has not been implemented yet.'
  277. );
  278. }
  279. /**
  280. * @covers ImagickDraw::getfontsize
  281. * @todo Implement testGetfontsize().
  282. */
  283. public function testGetfontsize()
  284. {
  285. // Remove the following lines when you implement this test.
  286. $this->markTestIncomplete(
  287. 'This test has not been implemented yet.'
  288. );
  289. }
  290. /**
  291. * @covers ImagickDraw::getfontstyle
  292. * @todo Implement testGetfontstyle().
  293. */
  294. public function testGetfontstyle()
  295. {
  296. // Remove the following lines when you implement this test.
  297. $this->markTestIncomplete(
  298. 'This test has not been implemented yet.'
  299. );
  300. }
  301. /**
  302. * @covers ImagickDraw::getfontweight
  303. * @todo Implement testGetfontweight().
  304. */
  305. public function testGetfontweight()
  306. {
  307. // Remove the following lines when you implement this test.
  308. $this->markTestIncomplete(
  309. 'This test has not been implemented yet.'
  310. );
  311. }
  312. /**
  313. * @covers ImagickDraw::destroy
  314. * @todo Implement testDestroy().
  315. */
  316. public function testDestroy()
  317. {
  318. // Remove the following lines when you implement this test.
  319. $this->markTestIncomplete(
  320. 'This test has not been implemented yet.'
  321. );
  322. }
  323. /**
  324. * @covers ImagickDraw::rectangle
  325. * @todo Implement testRectangle().
  326. */
  327. public function testRectangle()
  328. {
  329. // Remove the following lines when you implement this test.
  330. $this->markTestIncomplete(
  331. 'This test has not been implemented yet.'
  332. );
  333. }
  334. /**
  335. * @covers ImagickDraw::roundrectangle
  336. * @todo Implement testRoundrectangle().
  337. */
  338. public function testRoundrectangle()
  339. {
  340. // Remove the following lines when you implement this test.
  341. $this->markTestIncomplete(
  342. 'This test has not been implemented yet.'
  343. );
  344. }
  345. /**
  346. * @covers ImagickDraw::ellipse
  347. * @todo Implement testEllipse().
  348. */
  349. public function testEllipse()
  350. {
  351. // Remove the following lines when you implement this test.
  352. $this->markTestIncomplete(
  353. 'This test has not been implemented yet.'
  354. );
  355. }
  356. /**
  357. * @covers ImagickDraw::skewx
  358. * @todo Implement testSkewx().
  359. */
  360. public function testSkewx()
  361. {
  362. // Remove the following lines when you implement this test.
  363. $this->markTestIncomplete(
  364. 'This test has not been implemented yet.'
  365. );
  366. }
  367. /**
  368. * @covers ImagickDraw::skewy
  369. * @todo Implement testSkewy().
  370. */
  371. public function testSkewy()
  372. {
  373. // Remove the following lines when you implement this test.
  374. $this->markTestIncomplete(
  375. 'This test has not been implemented yet.'
  376. );
  377. }
  378. /**
  379. * @covers ImagickDraw::translate
  380. * @todo Implement testTranslate().
  381. */
  382. public function testTranslate()
  383. {
  384. // Remove the following lines when you implement this test.
  385. $this->markTestIncomplete(
  386. 'This test has not been implemented yet.'
  387. );
  388. }
  389. /**
  390. * @covers ImagickDraw::line
  391. * @todo Implement testLine().
  392. */
  393. public function testLine()
  394. {
  395. // Remove the following lines when you implement this test.
  396. $this->markTestIncomplete(
  397. 'This test has not been implemented yet.'
  398. );
  399. }
  400. /**
  401. * @covers ImagickDraw::arc
  402. * @todo Implement testArc().
  403. */
  404. public function testArc()
  405. {
  406. // Remove the following lines when you implement this test.
  407. $this->markTestIncomplete(
  408. 'This test has not been implemented yet.'
  409. );
  410. }
  411. /**
  412. * @covers ImagickDraw::matte
  413. * @todo Implement testMatte().
  414. */
  415. public function testMatte()
  416. {
  417. // Remove the following lines when you implement this test.
  418. $this->markTestIncomplete(
  419. 'This test has not been implemented yet.'
  420. );
  421. }
  422. /**
  423. * @covers ImagickDraw::polygon
  424. * @todo Implement testPolygon().
  425. */
  426. public function testPolygon()
  427. {
  428. // Remove the following lines when you implement this test.
  429. $this->markTestIncomplete(
  430. 'This test has not been implemented yet.'
  431. );
  432. }
  433. /**
  434. * @covers ImagickDraw::point
  435. * @todo Implement testPoint().
  436. */
  437. public function testPoint()
  438. {
  439. // Remove the following lines when you implement this test.
  440. $this->markTestIncomplete(
  441. 'This test has not been implemented yet.'
  442. );
  443. }
  444. /**
  445. * @covers ImagickDraw::gettextdecoration
  446. * @todo Implement testGettextdecoration().
  447. */
  448. public function testGettextdecoration()
  449. {
  450. // Remove the following lines when you implement this test.
  451. $this->markTestIncomplete(
  452. 'This test has not been implemented yet.'
  453. );
  454. }
  455. /**
  456. * @covers ImagickDraw::gettextencoding
  457. * @todo Implement testGettextencoding().
  458. */
  459. public function testGettextencoding()
  460. {
  461. // Remove the following lines when you implement this test.
  462. $this->markTestIncomplete(
  463. 'This test has not been implemented yet.'
  464. );
  465. }
  466. /**
  467. * @covers ImagickDraw::getfontstretch
  468. * @todo Implement testGetfontstretch().
  469. */
  470. public function testGetfontstretch()
  471. {
  472. // Remove the following lines when you implement this test.
  473. $this->markTestIncomplete(
  474. 'This test has not been implemented yet.'
  475. );
  476. }
  477. /**
  478. * @covers ImagickDraw::setfontstretch
  479. * @todo Implement testSetfontstretch().
  480. */
  481. public function testSetfontstretch()
  482. {
  483. // Remove the following lines when you implement this test.
  484. $this->markTestIncomplete(
  485. 'This test has not been implemented yet.'
  486. );
  487. }
  488. /**
  489. * @covers ImagickDraw::setstrokeantialias
  490. * @todo Implement testSetstrokeantialias().
  491. */
  492. public function testSetstrokeantialias()
  493. {
  494. // Remove the following lines when you implement this test.
  495. $this->markTestIncomplete(
  496. 'This test has not been implemented yet.'
  497. );
  498. }
  499. /**
  500. * @covers ImagickDraw::settextalignment
  501. * @todo Implement testSettextalignment().
  502. */
  503. public function testSettextalignment()
  504. {
  505. // Remove the following lines when you implement this test.
  506. $this->markTestIncomplete(
  507. 'This test has not been implemented yet.'
  508. );
  509. }
  510. /**
  511. * @covers ImagickDraw::settextdecoration
  512. * @todo Implement testSettextdecoration().
  513. */
  514. public function testSettextdecoration()
  515. {
  516. // Remove the following lines when you implement this test.
  517. $this->markTestIncomplete(
  518. 'This test has not been implemented yet.'
  519. );
  520. }
  521. /**
  522. * @covers ImagickDraw::settextundercolor
  523. * @todo Implement testSettextundercolor().
  524. */
  525. public function testSettextundercolor()
  526. {
  527. // Remove the following lines when you implement this test.
  528. $this->markTestIncomplete(
  529. 'This test has not been implemented yet.'
  530. );
  531. }
  532. /**
  533. * @covers ImagickDraw::setviewbox
  534. * @todo Implement testSetviewbox().
  535. */
  536. public function testSetviewbox()
  537. {
  538. // Remove the following lines when you implement this test.
  539. $this->markTestIncomplete(
  540. 'This test has not been implemented yet.'
  541. );
  542. }
  543. /**
  544. * @covers ImagickDraw::clone
  545. * @todo Implement testClone().
  546. */
  547. public function testClone()
  548. {
  549. // Remove the following lines when you implement this test.
  550. $this->markTestIncomplete(
  551. 'This test has not been implemented yet.'
  552. );
  553. }
  554. /**
  555. * @covers ImagickDraw::affine
  556. * @todo Implement testAffine().
  557. */
  558. public function testAffine()
  559. {
  560. // Remove the following lines when you implement this test.
  561. $this->markTestIncomplete(
  562. 'This test has not been implemented yet.'
  563. );
  564. }
  565. /**
  566. * @covers ImagickDraw::bezier
  567. * @todo Implement testBezier().
  568. */
  569. public function testBezier()
  570. {
  571. // Remove the following lines when you implement this test.
  572. $this->markTestIncomplete(
  573. 'This test has not been implemented yet.'
  574. );
  575. }
  576. /**
  577. * @covers ImagickDraw::composite
  578. * @todo Implement testComposite().
  579. */
  580. public function testComposite()
  581. {
  582. // Remove the following lines when you implement this test.
  583. $this->markTestIncomplete(
  584. 'This test has not been implemented yet.'
  585. );
  586. }
  587. /**
  588. * @covers ImagickDraw::color
  589. * @todo Implement testColor().
  590. */
  591. public function testColor()
  592. {
  593. // Remove the following lines when you implement this test.
  594. $this->markTestIncomplete(
  595. 'This test has not been implemented yet.'
  596. );
  597. }
  598. /**
  599. * @covers ImagickDraw::comment
  600. * @todo Implement testComment().
  601. */
  602. public function testComment()
  603. {
  604. // Remove the following lines when you implement this test.
  605. $this->markTestIncomplete(
  606. 'This test has not been implemented yet.'
  607. );
  608. }
  609. /**
  610. * @covers ImagickDraw::getclippath
  611. * @todo Implement testGetclippath().
  612. */
  613. public function testGetclippath()
  614. {
  615. // Remove the following lines when you implement this test.
  616. $this->markTestIncomplete(
  617. 'This test has not been implemented yet.'
  618. );
  619. }
  620. /**
  621. * @covers ImagickDraw::getcliprule
  622. * @todo Implement testGetcliprule().
  623. */
  624. public function testGetcliprule()
  625. {
  626. // Remove the following lines when you implement this test.
  627. $this->markTestIncomplete(
  628. 'This test has not been implemented yet.'
  629. );
  630. }
  631. /**
  632. * @covers ImagickDraw::getclipunits
  633. * @todo Implement testGetclipunits().
  634. */
  635. public function testGetclipunits()
  636. {
  637. // Remove the following lines when you implement this test.
  638. $this->markTestIncomplete(
  639. 'This test has not been implemented yet.'
  640. );
  641. }
  642. /**
  643. * @covers ImagickDraw::getfillcolor
  644. * @todo Implement testGetfillcolor().
  645. */
  646. public function testGetfillcolor()
  647. {
  648. // Remove the following lines when you implement this test.
  649. $this->markTestIncomplete(
  650. 'This test has not been implemented yet.'
  651. );
  652. }
  653. /**
  654. * @covers ImagickDraw::getfillopacity
  655. * @todo Implement testGetfillopacity().
  656. */
  657. public function testGetfillopacity()
  658. {
  659. // Remove the following lines when you implement this test.
  660. $this->markTestIncomplete(
  661. 'This test has not been implemented yet.'
  662. );
  663. }
  664. /**
  665. * @covers ImagickDraw::getfillrule
  666. * @todo Implement testGetfillrule().
  667. */
  668. public function testGetfillrule()
  669. {
  670. // Remove the following lines when you implement this test.
  671. $this->markTestIncomplete(
  672. 'This test has not been implemented yet.'
  673. );
  674. }
  675. /**
  676. * @covers ImagickDraw::getgravity
  677. * @todo Implement testGetgravity().
  678. */
  679. public function testGetgravity()
  680. {
  681. // Remove the following lines when you implement this test.
  682. $this->markTestIncomplete(
  683. 'This test has not been implemented yet.'
  684. );
  685. }
  686. /**
  687. * @covers ImagickDraw::getstrokeantialias
  688. * @todo Implement testGetstrokeantialias().
  689. */
  690. public function testGetstrokeantialias()
  691. {
  692. // Remove the following lines when you implement this test.
  693. $this->markTestIncomplete(
  694. 'This test has not been implemented yet.'
  695. );
  696. }
  697. /**
  698. * @covers ImagickDraw::getstrokecolor
  699. * @todo Implement testGetstrokecolor().
  700. */
  701. public function testGetstrokecolor()
  702. {
  703. // Remove the following lines when you implement this test.
  704. $this->markTestIncomplete(
  705. 'This test has not been implemented yet.'
  706. );
  707. }
  708. /**
  709. * @covers ImagickDraw::getstrokedasharray
  710. * @todo Implement testGetstrokedasharray().
  711. */
  712. public function testGetstrokedasharray()
  713. {
  714. // Remove the following lines when you implement this test.
  715. $this->markTestIncomplete(
  716. 'This test has not been implemented yet.'
  717. );
  718. }
  719. /**
  720. * @covers ImagickDraw::getstrokedashoffset
  721. * @todo Implement testGetstrokedashoffset().
  722. */
  723. public function testGetstrokedashoffset()
  724. {
  725. // Remove the following lines when you implement this test.
  726. $this->markTestIncomplete(
  727. 'This test has not been implemented yet.'
  728. );
  729. }
  730. /**
  731. * @covers ImagickDraw::getstrokelinecap
  732. * @todo Implement testGetstrokelinecap().
  733. */
  734. public function testGetstrokelinecap()
  735. {
  736. // Remove the following lines when you implement this test.
  737. $this->markTestIncomplete(
  738. 'This test has not been implemented yet.'
  739. );
  740. }
  741. /**
  742. * @covers ImagickDraw::getstrokelinejoin
  743. * @todo Implement testGetstrokelinejoin().
  744. */
  745. public function testGetstrokelinejoin()
  746. {
  747. // Remove the following lines when you implement this test.
  748. $this->markTestIncomplete(
  749. 'This test has not been implemented yet.'
  750. );
  751. }
  752. /**
  753. * @covers ImagickDraw::getstrokemiterlimit
  754. * @todo Implement testGetstrokemiterlimit().
  755. */
  756. public function testGetstrokemiterlimit()
  757. {
  758. // Remove the following lines when you implement this test.
  759. $this->markTestIncomplete(
  760. 'This test has not been implemented yet.'
  761. );
  762. }
  763. /**
  764. * @covers ImagickDraw::getstrokeopacity
  765. * @todo Implement testGetstrokeopacity().
  766. */
  767. public function testGetstrokeopacity()
  768. {
  769. // Remove the following lines when you implement this test.
  770. $this->markTestIncomplete(
  771. 'This test has not been implemented yet.'
  772. );
  773. }
  774. /**
  775. * @covers ImagickDraw::getstrokewidth
  776. * @todo Implement testGetstrokewidth().
  777. */
  778. public function testGetstrokewidth()
  779. {
  780. // Remove the following lines when you implement this test.
  781. $this->markTestIncomplete(
  782. 'This test has not been implemented yet.'
  783. );
  784. }
  785. /**
  786. * @covers ImagickDraw::gettextalignment
  787. * @todo Implement testGettextalignment().
  788. */
  789. public function testGettextalignment()
  790. {
  791. // Remove the following lines when you implement this test.
  792. $this->markTestIncomplete(
  793. 'This test has not been implemented yet.'
  794. );
  795. }
  796. /**
  797. * @covers ImagickDraw::gettextantialias
  798. * @todo Implement testGettextantialias().
  799. */
  800. public function testGettextantialias()
  801. {
  802. // Remove the following lines when you implement this test.
  803. $this->markTestIncomplete(
  804. 'This test has not been implemented yet.'
  805. );
  806. }
  807. /**
  808. * @covers ImagickDraw::getvectorgraphics
  809. * @todo Implement testGetvectorgraphics().
  810. */
  811. public function testGetvectorgraphics()
  812. {
  813. // Remove the following lines when you implement this test.
  814. $this->markTestIncomplete(
  815. 'This test has not been implemented yet.'
  816. );
  817. }
  818. /**
  819. * @covers ImagickDraw::gettextundercolor
  820. * @todo Implement testGettextundercolor().
  821. */
  822. public function testGettextundercolor()
  823. {
  824. // Remove the following lines when you implement this test.
  825. $this->markTestIncomplete(
  826. 'This test has not been implemented yet.'
  827. );
  828. }
  829. /**
  830. * @covers ImagickDraw::pathclose
  831. * @todo Implement testPathclose().
  832. */
  833. public function testPathclose()
  834. {
  835. // Remove the following lines when you implement this test.
  836. $this->markTestIncomplete(
  837. 'This test has not been implemented yet.'
  838. );
  839. }
  840. /**
  841. * @covers ImagickDraw::pathcurvetoabsolute
  842. * @todo Implement testPathcurvetoabsolute().
  843. */
  844. public function testPathcurvetoabsolute()
  845. {
  846. // Remove the following lines when you implement this test.
  847. $this->markTestIncomplete(
  848. 'This test has not been implemented yet.'
  849. );
  850. }
  851. /**
  852. * @covers ImagickDraw::pathcurvetorelative
  853. * @todo Implement testPathcurvetorelative().
  854. */
  855. public function testPathcurvetorelative()
  856. {
  857. // Remove the following lines when you implement this test.
  858. $this->markTestIncomplete(
  859. 'This test has not been implemented yet.'
  860. );
  861. }
  862. /**
  863. * @covers ImagickDraw::pathcurvetoquadraticbezierabsolute
  864. * @todo Implement testPathcurvetoquadraticbezierabsolute().
  865. */
  866. public function testPathcurvetoquadraticbezierabsolute()
  867. {
  868. // Remove the following lines when you implement this test.
  869. $this->markTestIncomplete(
  870. 'This test has not been implemented yet.'
  871. );
  872. }
  873. /**
  874. * @covers ImagickDraw::pathcurvetoquadraticbezierrelative
  875. * @todo Implement testPathcurvetoquadraticbezierrelative().
  876. */
  877. public function testPathcurvetoquadraticbezierrelative()
  878. {
  879. // Remove the following lines when you implement this test.
  880. $this->markTestIncomplete(
  881. 'This test has not been implemented yet.'
  882. );
  883. }
  884. /**
  885. * @covers ImagickDraw::pathcurvetoquadraticbeziersmoothabsolute
  886. * @todo Implement testPathcurvetoquadraticbeziersmoothabsolute().
  887. */
  888. public function testPathcurvetoquadraticbeziersmoothabsolute()
  889. {
  890. // Remove the following lines when you implement this test.
  891. $this->markTestIncomplete(
  892. 'This test has not been implemented yet.'
  893. );
  894. }
  895. /**
  896. * @covers ImagickDraw::pathcurvetoquadraticbeziersmoothrelative
  897. * @todo Implement testPathcurvetoquadraticbeziersmoothrelative().
  898. */
  899. public function testPathcurvetoquadraticbeziersmoothrelative()
  900. {
  901. // Remove the following lines when you implement this test.
  902. $this->markTestIncomplete(
  903. 'This test has not been implemented yet.'
  904. );
  905. }
  906. /**
  907. * @covers ImagickDraw::pathcurvetosmoothabsolute
  908. * @todo Implement testPathcurvetosmoothabsolute().
  909. */
  910. public function testPathcurvetosmoothabsolute()
  911. {
  912. // Remove the following lines when you implement this test.
  913. $this->markTestIncomplete(
  914. 'This test has not been implemented yet.'
  915. );
  916. }
  917. /**
  918. * @covers ImagickDraw::pathcurvetosmoothrelative
  919. * @todo Implement testPathcurvetosmoothrelative().
  920. */
  921. public function testPathcurvetosmoothrelative()
  922. {
  923. // Remove the following lines when you implement this test.
  924. $this->markTestIncomplete(
  925. 'This test has not been implemented yet.'
  926. );
  927. }
  928. /**
  929. * @covers ImagickDraw::pathellipticarcabsolute
  930. * @todo Implement testPathellipticarcabsolute().
  931. */
  932. public function testPathellipticarcabsolute()
  933. {
  934. // Remove the following lines when you implement this test.
  935. $this->markTestIncomplete(
  936. 'This test has not been implemented yet.'
  937. );
  938. }
  939. /**
  940. * @covers ImagickDraw::pathellipticarcrelative
  941. * @todo Implement testPathellipticarcrelative().
  942. */
  943. public function testPathellipticarcrelative()
  944. {
  945. // Remove the following lines when you implement this test.
  946. $this->markTestIncomplete(
  947. 'This test has not been implemented yet.'
  948. );
  949. }
  950. /**
  951. * @covers ImagickDraw::pathfinish
  952. * @todo Implement testPathfinish().
  953. */
  954. public function testPathfinish()
  955. {
  956. // Remove the following lines when you implement this test.
  957. $this->markTestIncomplete(
  958. 'This test has not been implemented yet.'
  959. );
  960. }
  961. /**
  962. * @covers ImagickDraw::pathlinetoabsolute
  963. * @todo Implement testPathlinetoabsolute().
  964. */
  965. public function testPathlinetoabsolute()
  966. {
  967. // Remove the following lines when you implement this test.
  968. $this->markTestIncomplete(
  969. 'This test has not been implemented yet.'
  970. );
  971. }
  972. /**
  973. * @covers ImagickDraw::pathlinetorelative
  974. * @todo Implement testPathlinetorelative().
  975. */
  976. public function testPathlinetorelative()
  977. {
  978. // Remove the following lines when you implement this test.
  979. $this->markTestIncomplete(
  980. 'This test has not been implemented yet.'
  981. );
  982. }
  983. /**
  984. * @covers ImagickDraw::pathlinetohorizontalabsolute
  985. * @todo Implement testPathlinetohorizontalabsolute().
  986. */
  987. public function testPathlinetohorizontalabsolute()
  988. {
  989. // Remove the following lines when you implement this test.
  990. $this->markTestIncomplete(
  991. 'This test has not been implemented yet.'
  992. );
  993. }
  994. /**
  995. * @covers ImagickDraw::pathlinetohorizontalrelative
  996. * @todo Implement testPathlinetohorizontalrelative().
  997. */
  998. public function testPathlinetohorizontalrelative()
  999. {
  1000. // Remove the following lines when you implement this test.
  1001. $this->markTestIncomplete(
  1002. 'This test has not been implemented yet.'
  1003. );
  1004. }
  1005. /**
  1006. * @covers ImagickDraw::pathlinetoverticalabsolute
  1007. * @todo Implement testPathlinetoverticalabsolute().
  1008. */
  1009. public function testPathlinetoverticalabsolute()
  1010. {
  1011. // Remove the following lines when you implement this test.
  1012. $this->markTestIncomplete(
  1013. 'This test has not been implemented yet.'
  1014. );
  1015. }
  1016. /**
  1017. * @covers ImagickDraw::pathlinetoverticalrelative
  1018. * @todo Implement testPathlinetoverticalrelative().
  1019. */
  1020. public function testPathlinetoverticalrelative()
  1021. {
  1022. // Remove the following lines when you implement this test.
  1023. $this->markTestIncomplete(
  1024. 'This test has not been implemented yet.'
  1025. );
  1026. }
  1027. /**
  1028. * @covers ImagickDraw::pathmovetoabsolute
  1029. * @todo Implement testPathmovetoabsolute().
  1030. */
  1031. public function testPathmovetoabsolute()
  1032. {
  1033. // Remove the following lines when you implement this test.
  1034. $this->markTestIncomplete(
  1035. 'This test has not been implemented yet.'
  1036. );
  1037. }
  1038. /**
  1039. * @covers ImagickDraw::pathmovetorelative
  1040. * @todo Implement testPathmovetorelative().
  1041. */
  1042. public function testPathmovetorelative()
  1043. {
  1044. // Remove the following lines when you implement this test.
  1045. $this->markTestIncomplete(
  1046. 'This test has not been implemented yet.'
  1047. );
  1048. }
  1049. /**
  1050. * @covers ImagickDraw::pathstart
  1051. * @todo Implement testPathstart().
  1052. */
  1053. public function testPathstart()
  1054. {
  1055. // Remove the following lines when you implement this test.
  1056. $this->markTestIncomplete(
  1057. 'This test has not been implemented yet.'
  1058. );
  1059. }
  1060. /**
  1061. * @covers ImagickDraw::polyline
  1062. * @todo Implement testPolyline().
  1063. */
  1064. public function testPolyline()
  1065. {
  1066. // Remove the following lines when you implement this test.
  1067. $this->markTestIncomplete(
  1068. 'This test has not been implemented yet.'
  1069. );
  1070. }
  1071. /**
  1072. * @covers ImagickDraw::popclippath
  1073. * @todo Implement testPopclippath().
  1074. */
  1075. public function testPopclippath()
  1076. {
  1077. // Remove the following lines when you implement this test.
  1078. $this->markTestIncomplete(
  1079. 'This test has not been implemented yet.'
  1080. );
  1081. }
  1082. /**
  1083. * @covers ImagickDraw::popdefs
  1084. * @todo Implement testPopdefs().
  1085. */
  1086. public function testPopdefs()
  1087. {
  1088. // Remove the following lines when you implement this test.
  1089. $this->markTestIncomplete(
  1090. 'This test has not been implemented yet.'
  1091. );
  1092. }
  1093. /**
  1094. * @covers ImagickDraw::poppattern
  1095. * @todo Implement testPoppattern().
  1096. */
  1097. public function testPoppattern()
  1098. {
  1099. // Remove the following lines when you implement this test.
  1100. $this->markTestIncomplete(
  1101. 'This test has not been implemented yet.'
  1102. );
  1103. }
  1104. /**
  1105. * @covers ImagickDraw::pushclippath
  1106. * @todo Implement testPushclippath().
  1107. */
  1108. public function testPushclippath()
  1109. {
  1110. // Remove the following lines when you implement this test.
  1111. $this->markTestIncomplete(
  1112. 'This test has not been implemented yet.'
  1113. );
  1114. }
  1115. /**
  1116. * @covers ImagickDraw::pushdefs
  1117. * @todo Implement testPushdefs().
  1118. */
  1119. public function testPushdefs()
  1120. {
  1121. // Remove the following lines when you implement this test.
  1122. $this->markTestIncomplete(
  1123. 'This test has not been implemented yet.'
  1124. );
  1125. }
  1126. /**
  1127. * @covers ImagickDraw::pushpattern
  1128. * @todo Implement testPushpattern().
  1129. */
  1130. public function testPushpattern()
  1131. {
  1132. // Remove the following lines when you implement this test.
  1133. $this->markTestIncomplete(
  1134. 'This test has not been implemented yet.'
  1135. );
  1136. }
  1137. /**
  1138. * @covers ImagickDraw::render
  1139. * @todo Implement testRender().
  1140. */
  1141. public function testRender()
  1142. {
  1143. // Remove the following lines when you implement this test.
  1144. $this->markTestIncomplete(
  1145. 'This test has not been implemented yet.'
  1146. );
  1147. }
  1148. /**
  1149. * @covers ImagickDraw::rotate
  1150. * @todo Implement testRotate().
  1151. */
  1152. public function testRotate()
  1153. {
  1154. // Remove the following lines when you implement this test.
  1155. $this->markTestIncomplete(
  1156. 'This test has not been implemented yet.'
  1157. );
  1158. }
  1159. /**
  1160. * @covers ImagickDraw::scale
  1161. * @todo Implement testScale().
  1162. */
  1163. public function testScale()
  1164. {
  1165. // Remove the following lines when you implement this test.
  1166. $this->markTestIncomplete(
  1167. 'This test has not been implemented yet.'
  1168. );
  1169. }
  1170. /**
  1171. * @covers ImagickDraw::setclippath
  1172. * @todo Implement testSetclippath().
  1173. */
  1174. public function testSetclippath()
  1175. {
  1176. // Remove the following lines when you implement this test.
  1177. $this->markTestIncomplete(
  1178. 'This test has not been implemented yet.'
  1179. );
  1180. }
  1181. /**
  1182. * @covers ImagickDraw::setcliprule
  1183. * @todo Implement testSetcliprule().
  1184. */
  1185. public function testSetcliprule()
  1186. {
  1187. // Remove the following lines when you implement this test.
  1188. $this->markTestIncomplete(
  1189. 'This test has not been implemented yet.'
  1190. );
  1191. }
  1192. /**
  1193. * @covers ImagickDraw::setclipunits
  1194. * @todo Implement testSetclipunits().
  1195. */
  1196. public function testSetclipunits()
  1197. {
  1198. // Remove the following lines when you implement this test.
  1199. $this->markTestIncomplete(
  1200. 'This test has not been implemented yet.'
  1201. );
  1202. }
  1203. /**
  1204. * @covers ImagickDraw::setfillopacity
  1205. * @todo Implement testSetfillopacity().
  1206. */
  1207. public function testSetfillopacity()
  1208. {
  1209. // Remove the following lines when you implement this test.
  1210. $this->markTestIncomplete(
  1211. 'This test has not been implemented yet.'
  1212. );
  1213. }
  1214. /**
  1215. * @covers ImagickDraw::setfillpatternurl
  1216. * @todo Implement testSetfillpatternurl().
  1217. */
  1218. public function testSetfillpatternurl()
  1219. {
  1220. // Remove the following lines when you implement this test.
  1221. $this->markTestIncomplete(
  1222. 'This test has not been implemented yet.'
  1223. );
  1224. }
  1225. /**
  1226. * @covers ImagickDraw::setfillrule
  1227. * @todo Implement testSetfillrule().
  1228. */
  1229. public function testSetfillrule()
  1230. {
  1231. // Remove the following lines when you implement this test.
  1232. $this->markTestIncomplete(
  1233. 'This test has not been implemented yet.'
  1234. );
  1235. }
  1236. /**
  1237. * @covers ImagickDraw::setgravity
  1238. * @todo Implement testSetgravity().
  1239. */
  1240. public function testSetgravity()
  1241. {
  1242. // Remove the following lines when you implement this test.
  1243. $this->markTestIncomplete(
  1244. 'This test has not been implemented yet.'
  1245. );
  1246. }
  1247. /**
  1248. * @covers ImagickDraw::setstrokepatternurl
  1249. * @todo Implement testSetstrokepatternurl().
  1250. */
  1251. public function testSetstrokepatternurl()
  1252. {
  1253. // Remove the following lines when you implement this test.
  1254. $this->markTestIncomplete(
  1255. 'This test has not been implemented yet.'
  1256. );
  1257. }
  1258. /**
  1259. * @covers ImagickDraw::setstrokedashoffset
  1260. * @todo Implement testSetstrokedashoffset().
  1261. */
  1262. public function testSetstrokedashoffset()
  1263. {
  1264. // Remove the following lines when you implement this test.
  1265. $this->markTestIncomplete(
  1266. 'This test has not been implemented yet.'
  1267. );
  1268. }
  1269. /**
  1270. * @covers ImagickDraw::setstrokelinecap
  1271. * @todo Implement testSetstrokelinecap().
  1272. */
  1273. public function testSetstrokelinecap()
  1274. {
  1275. // Remove the following lines when you implement this test.
  1276. $this->markTestIncomplete(
  1277. 'This test has not been implemented yet.'
  1278. );
  1279. }
  1280. /**
  1281. * @covers ImagickDraw::setstrokelinejoin
  1282. * @todo Implement testSetstrokelinejoin().
  1283. */
  1284. public function testSetstrokelinejoin()
  1285. {
  1286. // Remove the following lines when you implement this test.
  1287. $this->markTestIncomplete(
  1288. 'This test has not been implemented yet.'
  1289. );
  1290. }
  1291. /**
  1292. * @covers ImagickDraw::setstrokemiterlimit
  1293. * @todo Implement testSetstrokemiterlimit().
  1294. */
  1295. public function testSetstrokemiterlimit()
  1296. {
  1297. // Remove the following lines when you implement this test.
  1298. $this->markTestIncomplete(
  1299. 'This test has not been implemented yet.'
  1300. );
  1301. }
  1302. /**
  1303. * @covers ImagickDraw::setstrokeopacity
  1304. * @todo Implement testSetstrokeopacity().
  1305. */
  1306. public function testSetstrokeopacity()
  1307. {
  1308. // Remove the following lines when you implement this test.
  1309. $this->markTestIncomplete(
  1310. 'This test has not been implemented yet.'
  1311. );
  1312. }
  1313. /**
  1314. * @covers ImagickDraw::setvectorgraphics
  1315. * @todo Implement testSetvectorgraphics().
  1316. */
  1317. public function testSetvectorgraphics()
  1318. {
  1319. // Remove the following lines when you implement this test.
  1320. $this->markTestIncomplete(
  1321. 'This test has not been implemented yet.'
  1322. );
  1323. }
  1324. /**
  1325. * @covers ImagickDraw::pop
  1326. * @todo Implement testPop().
  1327. */
  1328. public function testPop()
  1329. {
  1330. // Remove the following lines when you implement this test.
  1331. $this->markTestIncomplete(
  1332. 'This test has not been implemented yet.'
  1333. );
  1334. }
  1335. /**
  1336. * @covers ImagickDraw::push
  1337. * @todo Implement testPush().
  1338. */
  1339. public function testPush()
  1340. {
  1341. // Remove the following lines when you implement this test.
  1342. $this->markTestIncomplete(
  1343. 'This test has not been implemented yet.'
  1344. );
  1345. }
  1346. /**
  1347. * @covers ImagickDraw::setstrokedasharray
  1348. * @todo Implement testSetstrokedasharray().
  1349. */
  1350. public function testSetstrokedasharray()
  1351. {
  1352. // Remove the following lines when you implement this test.
  1353. $this->markTestIncomplete(
  1354. 'This test has not been implemented yet.'
  1355. );
  1356. }
  1357. }