TestRailMock.pm 513 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804
  1. # ABSTRACT: Provides an interface to something like TestRail's REST api in a bogus fashion
  2. # PODNAME: Test::LWP::UserAgent::TestRailMock
  3. package Test::LWP::UserAgent::TestRailMock;
  4. use strict;
  5. use warnings;
  6. use Test::LWP::UserAgent;
  7. use HTTP::Response;
  8. use HTTP::Request;
  9. use HTTP::Headers;
  10. use Clone qw{clone};
  11. =head1 DESCRIPTION
  12. Provides a Test::LWP::UserAgent with mappings defined for all the requests made by this module's main test.
  13. More or less provides a successful response with bogus data for every API call exposed by TestRail::API.
  14. Used primarily by said module's tests (whenever the test environment does not provide a TestRail server to test against).
  15. You probably won't need/want to use it, but you can by following the SYNOPSIS.
  16. The module was mostly auto-generated, with a few manual tweaks.
  17. =head1 SYNOPSIS
  18. use Test::LWP::UserAgent::TestRailMock;
  19. use TestRail::API;
  20. my $tr = TestRail::API->new('http://testrail.local','teodesian@cpan.org','bogus',undef,1);
  21. $tr->{'browser'} = $Test::LWP::UserAgent::TestRailMock::mockObject;
  22. =cut
  23. #Use this as the ->{'browser'} param of the TestRail::API object
  24. our $mockObject = Test::LWP::UserAgent->new();
  25. my ($VAR1,$VAR2,$VAR3,$VAR4,$VAR5);
  26. {
  27. $VAR1 = 'http://locked.out/index.php?/api/v2/get_users';
  28. $VAR2 = 403;
  29. $VAR3 = 'Stay out you red menace';
  30. $VAR4 = bless( {
  31. 'client-warning' => 'Internal response',
  32. 'client-date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  33. 'content-type' => 'text/plain',
  34. '::std_case' => {
  35. 'client-warning' => 'Client-Warning',
  36. 'client-date' => 'Client-Date'
  37. }
  38. }, 'HTTP::Headers' );
  39. $VAR5 = 'Stay out you red menace';
  40. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  41. }
  42. {
  43. $VAR1 = 'http://locked.out/worse/index.php?/api/v2/get_users';
  44. $VAR2 = 401;
  45. $VAR3 = 'Could not find pants with both hands';
  46. $VAR4 = bless( {
  47. 'client-warning' => 'Internal response',
  48. 'client-date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  49. 'content-type' => 'text/plain',
  50. '::std_case' => {
  51. 'client-warning' => 'Client-Warning',
  52. 'client-date' => 'Client-Date'
  53. }
  54. }, 'HTTP::Headers' );
  55. $VAR5 = 'Could not find pants with both hands';
  56. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  57. }
  58. {
  59. $VAR1 = 'http://hokum.bogus/index.php?/api/v2/get_users';
  60. $VAR2 = 500;
  61. $VAR3 = 'Can\'t connect to hokum.bogus:80 (Bad hostname)';
  62. $VAR4 = bless( {
  63. 'client-warning' => 'Internal response',
  64. 'client-date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  65. 'content-type' => 'text/plain',
  66. '::std_case' => {
  67. 'client-warning' => 'Client-Warning',
  68. 'client-date' => 'Client-Date'
  69. }
  70. }, 'HTTP::Headers' );
  71. $VAR5 = 'Can\'t connect to hokum.bogus:80 (Bad hostname)
  72. LWP::Protocol::http::Socket: Bad hostname \'hokum.bogus\' at /usr/share/perl5/LWP/Protocol/http.pm line 51.
  73. ';
  74. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  75. }
  76. {
  77. $VAR1 = 'index.php?/api/v2/get_users';
  78. $VAR2 = '200';
  79. $VAR3 = 'OK';
  80. $VAR4 = bless( {
  81. 'connection' => 'close',
  82. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  83. 'client-response-num' => 1,
  84. 'date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  85. 'client-peer' => '192.168.122.217:80',
  86. 'content-length' => '70',
  87. '::std_case' => {
  88. 'client-date' => 'Client-Date',
  89. 'x-powered-by' => 'X-Powered-By',
  90. 'client-response-num' => 'Client-Response-Num',
  91. 'client-peer' => 'Client-Peer'
  92. },
  93. 'client-date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  94. 'content-type' => 'application/json; charset=utf-8',
  95. 'server' => 'Apache/2.4.7 (Ubuntu)'
  96. }, 'HTTP::Headers' );
  97. $VAR5 = '[{"id":1,"name":"teodesian","email":"teodesian@cpan.org","is_active":true},{"id":2,"name":"billy","email":"billy@witchdoctor.com","is_active":true}]';
  98. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  99. }
  100. {
  101. $VAR1 = 'noSuchMethod';
  102. $VAR2 = '404';
  103. $VAR3 = 'Not Found';
  104. $VAR4 = bless( {
  105. 'connection' => 'close',
  106. 'client-response-num' => 1,
  107. 'date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  108. 'client-peer' => '192.168.122.217:80',
  109. 'content-length' => '289',
  110. '::std_case' => {
  111. 'client-date' => 'Client-Date',
  112. 'client-response-num' => 'Client-Response-Num',
  113. 'title' => 'Title',
  114. 'client-peer' => 'Client-Peer'
  115. },
  116. 'client-date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  117. 'content-type' => 'text/html; charset=iso-8859-1',
  118. 'title' => '404 Not Found',
  119. 'server' => 'Apache/2.4.7 (Ubuntu)'
  120. }, 'HTTP::Headers' );
  121. $VAR5 = '<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  122. <html><head>
  123. <title>404 Not Found</title>
  124. </head><body>
  125. <h1>Not Found</h1>
  126. <p>The requested URL /noSuchMethod was not found on this server.</p>
  127. <hr>
  128. <address>Apache/2.4.7 (Ubuntu) Server at testrail.local Port 80</address>
  129. </body></html>
  130. ';
  131. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  132. }
  133. {
  134. $VAR1 = 'index.php?/api/v2/add_project';
  135. $VAR2 = '200';
  136. $VAR3 = 'OK';
  137. $VAR4 = bless( {
  138. 'connection' => 'close',
  139. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  140. 'client-response-num' => 1,
  141. 'date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  142. 'client-peer' => '192.168.122.217:80',
  143. 'content-length' => '236',
  144. '::std_case' => {
  145. 'client-date' => 'Client-Date',
  146. 'x-powered-by' => 'X-Powered-By',
  147. 'client-response-num' => 'Client-Response-Num',
  148. 'client-peer' => 'Client-Peer'
  149. },
  150. 'client-date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  151. 'content-type' => 'application/json; charset=utf-8',
  152. 'server' => 'Apache/2.4.7 (Ubuntu)'
  153. }, 'HTTP::Headers' );
  154. $VAR5 = '{"id":9,"name":"CRUSH ALL HUMANS","announcement":"Robo-Signed Soviet 5 Year Project","show_announcement":false,"is_completed":false,"completed_on":null,"suite_mode":3,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/projects\\/overview\\/9"}';
  155. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  156. }
  157. {
  158. $VAR1 = 'index.php?/api/v2/get_projects';
  159. $VAR2 = '200';
  160. $VAR3 = 'OK';
  161. $VAR4 = bless( {
  162. 'connection' => 'close',
  163. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  164. 'client-response-num' => 1,
  165. 'date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  166. 'client-peer' => '192.168.122.217:80',
  167. 'content-length' => '238',
  168. '::std_case' => {
  169. 'client-date' => 'Client-Date',
  170. 'x-powered-by' => 'X-Powered-By',
  171. 'client-response-num' => 'Client-Response-Num',
  172. 'client-peer' => 'Client-Peer'
  173. },
  174. 'client-date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  175. 'content-type' => 'application/json; charset=utf-8',
  176. 'server' => 'Apache/2.4.7 (Ubuntu)'
  177. }, 'HTTP::Headers' );
  178. $VAR5 = '[{"id":9,"name":"CRUSH ALL HUMANS","announcement":"Robo-Signed Soviet 5 Year Project","show_announcement":false,"is_completed":false,"completed_on":null,"suite_mode":3,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/projects\\/overview\\/9"},{"id":10,"name":"TestProject","is_completed":false},{"id":3,"name":"zippy","announcement":null,"show_announcement":false,"is_completed":false,"completed_on":null,"suite_mode":2,"url":"http:\\/\\/testrail.local\\/index.php?\\/projects\\/overview\\/3"}]';
  179. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  180. }
  181. {
  182. $VAR1 = 'index.php?/api/v2/add_suite/9';
  183. $VAR2 = '200';
  184. $VAR3 = 'OK';
  185. $VAR4 = bless( {
  186. 'connection' => 'close',
  187. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  188. 'client-response-num' => 1,
  189. 'date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  190. 'client-peer' => '192.168.122.217:80',
  191. 'content-length' => '254',
  192. '::std_case' => {
  193. 'client-date' => 'Client-Date',
  194. 'x-powered-by' => 'X-Powered-By',
  195. 'client-response-num' => 'Client-Response-Num',
  196. 'client-peer' => 'Client-Peer'
  197. },
  198. 'client-date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  199. 'content-type' => 'application/json; charset=utf-8',
  200. 'server' => 'Apache/2.4.7 (Ubuntu)'
  201. }, 'HTTP::Headers' );
  202. $VAR5 = '{"id":9,"name":"HAMBURGER-IZE HUMANITY","description":"Robo-Signed Patriotic People\'s TestSuite","project_id":9,"is_master":false,"is_baseline":false,"is_completed":false,"completed_on":null,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/suites\\/view\\/9"}';
  203. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  204. }
  205. {
  206. $VAR1 = 'index.php?/api/v2/get_suites/9';
  207. $VAR2 = '200';
  208. $VAR3 = 'OK';
  209. $VAR4 = bless( {
  210. 'connection' => 'close',
  211. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  212. 'client-response-num' => 1,
  213. 'date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  214. 'client-peer' => '192.168.122.217:80',
  215. 'content-length' => '256',
  216. '::std_case' => {
  217. 'client-date' => 'Client-Date',
  218. 'x-powered-by' => 'X-Powered-By',
  219. 'client-response-num' => 'Client-Response-Num',
  220. 'client-peer' => 'Client-Peer'
  221. },
  222. 'client-date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  223. 'content-type' => 'application/json; charset=utf-8',
  224. 'server' => 'Apache/2.4.7 (Ubuntu)'
  225. }, 'HTTP::Headers' );
  226. $VAR5 = '[{"id":9,"name":"HAMBURGER-IZE HUMANITY","description":"Robo-Signed Patriotic People\'s TestSuite","project_id":9,"is_master":false,"is_baseline":false,"is_completed":false,"completed_on":null,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/suites\\/view\\/9"}]';
  227. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  228. }
  229. #OK, this one is pretty bogus, but ehhhh
  230. {
  231. $VAR1 = 'index.php?/api/v2/get_suites/10';
  232. $VAR2 = '200';
  233. $VAR3 = 'OK';
  234. $VAR4 = bless( {
  235. 'connection' => 'close',
  236. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  237. 'client-response-num' => 1,
  238. 'date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  239. 'client-peer' => '192.168.122.217:80',
  240. 'content-length' => '256',
  241. '::std_case' => {
  242. 'client-date' => 'Client-Date',
  243. 'x-powered-by' => 'X-Powered-By',
  244. 'client-response-num' => 'Client-Response-Num',
  245. 'client-peer' => 'Client-Peer'
  246. },
  247. 'client-date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  248. 'content-type' => 'application/json; charset=utf-8',
  249. 'server' => 'Apache/2.4.7 (Ubuntu)'
  250. }, 'HTTP::Headers' );
  251. $VAR5 = '[{"id":9,"name":"HAMBURGER-IZE HUMANITY","description":"Robo-Signed Patriotic People\'s TestSuite","project_id":9,"is_master":false,"is_baseline":false,"is_completed":false,"completed_on":null,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/suites\\/view\\/9"}]';
  252. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  253. }
  254. {
  255. $VAR1 = 'index.php?/api/v2/get_suite/9';
  256. $VAR2 = '200';
  257. $VAR3 = 'OK';
  258. $VAR4 = bless( {
  259. 'connection' => 'close',
  260. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  261. 'client-response-num' => 1,
  262. 'date' => 'Tue, 23 Dec 2014 20:02:08 GMT',
  263. 'client-peer' => '192.168.122.217:80',
  264. 'content-length' => '254',
  265. '::std_case' => {
  266. 'client-date' => 'Client-Date',
  267. 'x-powered-by' => 'X-Powered-By',
  268. 'client-response-num' => 'Client-Response-Num',
  269. 'client-peer' => 'Client-Peer'
  270. },
  271. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  272. 'content-type' => 'application/json; charset=utf-8',
  273. 'server' => 'Apache/2.4.7 (Ubuntu)'
  274. }, 'HTTP::Headers' );
  275. $VAR5 = '{"id":9,"name":"HAMBURGER-IZE HUMANITY","description":"Robo-Signed Patriotic People\'s TestSuite","project_id":9,"is_master":false,"is_baseline":false,"is_completed":false,"completed_on":null,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/suites\\/view\\/9"}';
  276. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  277. }
  278. {
  279. $VAR1 = 'index.php?/api/v2/add_section/9';
  280. $VAR2 = '200';
  281. $VAR3 = 'OK';
  282. $VAR4 = bless( {
  283. 'connection' => 'close',
  284. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  285. 'client-response-num' => 1,
  286. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  287. 'client-peer' => '192.168.122.217:80',
  288. 'content-length' => '114',
  289. '::std_case' => {
  290. 'client-date' => 'Client-Date',
  291. 'x-powered-by' => 'X-Powered-By',
  292. 'client-response-num' => 'Client-Response-Num',
  293. 'client-peer' => 'Client-Peer'
  294. },
  295. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  296. 'content-type' => 'application/json; charset=utf-8',
  297. 'server' => 'Apache/2.4.7 (Ubuntu)'
  298. }, 'HTTP::Headers' );
  299. $VAR5 = '{"id":9,"suite_id":9,"name":"CARBON LIQUEFACTION","description":null,"parent_id":null,"display_order":1,"depth":0}';
  300. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  301. }
  302. {
  303. $VAR1 = 'index.php?/api/v2/get_sections/9&suite_id=9';
  304. $VAR2 = '200';
  305. $VAR3 = 'OK';
  306. $VAR4 = bless( {
  307. 'connection' => 'close',
  308. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  309. 'client-response-num' => 1,
  310. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  311. 'client-peer' => '192.168.122.217:80',
  312. 'content-length' => '116',
  313. '::std_case' => {
  314. 'client-date' => 'Client-Date',
  315. 'x-powered-by' => 'X-Powered-By',
  316. 'client-response-num' => 'Client-Response-Num',
  317. 'client-peer' => 'Client-Peer'
  318. },
  319. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  320. 'content-type' => 'application/json; charset=utf-8',
  321. 'server' => 'Apache/2.4.7 (Ubuntu)'
  322. }, 'HTTP::Headers' );
  323. $VAR5 = '[{"id":9,"suite_id":9,"name":"CARBON LIQUEFACTION","description":null,"parent_id":null,"display_order":1,"depth":0},{"id":10,"suite_id":9,"name":"fake.test","description":"Fake as it gets","parent_id":null}]';
  324. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  325. }
  326. {
  327. $VAR1 = 'index.php?/api/v2/get_sections/10&suite_id=9';
  328. $VAR2 = '200';
  329. $VAR3 = 'OK';
  330. $VAR4 = bless( {
  331. 'connection' => 'close',
  332. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  333. 'client-response-num' => 1,
  334. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  335. 'client-peer' => '192.168.122.217:80',
  336. 'content-length' => '116',
  337. '::std_case' => {
  338. 'client-date' => 'Client-Date',
  339. 'x-powered-by' => 'X-Powered-By',
  340. 'client-response-num' => 'Client-Response-Num',
  341. 'client-peer' => 'Client-Peer'
  342. },
  343. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  344. 'content-type' => 'application/json; charset=utf-8',
  345. 'server' => 'Apache/2.4.7 (Ubuntu)'
  346. }, 'HTTP::Headers' );
  347. $VAR5 = '[{"id":9,"suite_id":9,"name":"CARBON LIQUEFACTION","description":null,"parent_id":null,"display_order":1,"depth":0},{"id":10,"suite_id":9,"name":"fake.test","description":"Fake as it gets","parent_id":null}]';
  348. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  349. }
  350. {
  351. $VAR1 = 'index.php?/api/v2/get_section/9';
  352. $VAR2 = '200';
  353. $VAR3 = 'OK';
  354. $VAR4 = bless( {
  355. 'connection' => 'close',
  356. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  357. 'client-response-num' => 1,
  358. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  359. 'client-peer' => '192.168.122.217:80',
  360. 'content-length' => '114',
  361. '::std_case' => {
  362. 'client-date' => 'Client-Date',
  363. 'x-powered-by' => 'X-Powered-By',
  364. 'client-response-num' => 'Client-Response-Num',
  365. 'client-peer' => 'Client-Peer'
  366. },
  367. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  368. 'content-type' => 'application/json; charset=utf-8',
  369. 'server' => 'Apache/2.4.7 (Ubuntu)'
  370. }, 'HTTP::Headers' );
  371. $VAR5 = '{"id":9,"suite_id":9,"name":"CARBON LIQUEFACTION","description":null,"parent_id":null,"display_order":1,"depth":0}';
  372. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  373. }
  374. {
  375. $VAR1 = 'index.php?/api/v2/add_case/9';
  376. $VAR2 = '200';
  377. $VAR3 = 'OK';
  378. $VAR4 = bless( {
  379. 'connection' => 'close',
  380. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  381. 'client-response-num' => 1,
  382. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  383. 'client-peer' => '192.168.122.217:80',
  384. 'content-length' => '320',
  385. '::std_case' => {
  386. 'client-date' => 'Client-Date',
  387. 'x-powered-by' => 'X-Powered-By',
  388. 'client-response-num' => 'Client-Response-Num',
  389. 'client-peer' => 'Client-Peer'
  390. },
  391. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  392. 'content-type' => 'application/json; charset=utf-8',
  393. 'server' => 'Apache/2.4.7 (Ubuntu)'
  394. }, 'HTTP::Headers' );
  395. $VAR5 = '{"id":8,"title":"STROGGIFY POPULATION CENTERS","section_id":9,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1419364929,"updated_by":1,"updated_on":1419364929,"estimate":null,"estimate_forecast":null,"suite_id":9,"custom_preconds":null,"custom_steps":null,"custom_expected":null}';
  396. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  397. }
  398. {
  399. $VAR1 = 'index.php?/api/v2/get_cases/10&suite_id=9';
  400. $VAR2 = '200';
  401. $VAR3 = 'OK';
  402. $VAR4 = bless( {
  403. 'connection' => 'close',
  404. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  405. 'client-response-num' => 1,
  406. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  407. 'client-peer' => '192.168.122.217:80',
  408. 'content-length' => '322',
  409. '::std_case' => {
  410. 'client-date' => 'Client-Date',
  411. 'x-powered-by' => 'X-Powered-By',
  412. 'client-response-num' => 'Client-Response-Num',
  413. 'client-peer' => 'Client-Peer'
  414. },
  415. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  416. 'content-type' => 'application/json; charset=utf-8',
  417. 'server' => 'Apache/2.4.7 (Ubuntu)'
  418. }, 'HTTP::Headers' );
  419. $VAR5 = '[{"id":8,"title":"fake.test","section_id":9,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1419364929,"updated_by":1,"updated_on":1419364929,"estimate":null,"estimate_forecast":null,"suite_id":9,"custom_preconds":null,"custom_steps":null,"custom_expected":null},
  420. {"id":9,"title":"nothere.test","section_id":9,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1419364929,"updated_by":1,"updated_on":1419364929,"estimate":null,"estimate_forecast":null,"suite_id":9,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  421. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  422. }
  423. {
  424. $VAR1 = 'index.php?/api/v2/get_cases/9&suite_id=9&section_id=9';
  425. $VAR2 = '200';
  426. $VAR3 = 'OK';
  427. $VAR4 = bless( {
  428. 'connection' => 'close',
  429. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  430. 'client-response-num' => 1,
  431. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  432. 'client-peer' => '192.168.122.217:80',
  433. 'content-length' => '322',
  434. '::std_case' => {
  435. 'client-date' => 'Client-Date',
  436. 'x-powered-by' => 'X-Powered-By',
  437. 'client-response-num' => 'Client-Response-Num',
  438. 'client-peer' => 'Client-Peer'
  439. },
  440. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  441. 'content-type' => 'application/json; charset=utf-8',
  442. 'server' => 'Apache/2.4.7 (Ubuntu)'
  443. }, 'HTTP::Headers' );
  444. $VAR5 = '[{"id":8,"title":"STROGGIFY POPULATION CENTERS","section_id":9,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1419364929,"updated_by":1,"updated_on":1419364929,"estimate":null,"estimate_forecast":null,"suite_id":9,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  445. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  446. }
  447. {
  448. $VAR1 = 'index.php?/api/v2/get_cases/9&suite_id=9&section_id=10';
  449. $VAR2 = '200';
  450. $VAR3 = 'OK';
  451. $VAR4 = bless( {
  452. 'connection' => 'close',
  453. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  454. 'client-response-num' => 1,
  455. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  456. 'client-peer' => '192.168.122.217:80',
  457. 'content-length' => '322',
  458. '::std_case' => {
  459. 'client-date' => 'Client-Date',
  460. 'x-powered-by' => 'X-Powered-By',
  461. 'client-response-num' => 'Client-Response-Num',
  462. 'client-peer' => 'Client-Peer'
  463. },
  464. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  465. 'content-type' => 'application/json; charset=utf-8',
  466. 'server' => 'Apache/2.4.7 (Ubuntu)'
  467. }, 'HTTP::Headers' );
  468. $VAR5 = '[{"id":10,"title":"STORAGE TANKS SEARED","section_id":10,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1419364929,"updated_by":1,"updated_on":1419364929,"estimate":null,"estimate_forecast":null,"suite_id":9,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":11,"title":"NOT SO SEARED AFTER ARR","section_id":10,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1419364929,"updated_by":1,"updated_on":1419364929,"estimate":null,"estimate_forecast":null,"suite_id":9,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  469. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  470. }
  471. {
  472. $VAR1 = 'index.php?/api/v2/get_cases/10&suite_id=9&section_id=10';
  473. $VAR2 = '200';
  474. $VAR3 = 'OK';
  475. $VAR4 = bless( {
  476. 'connection' => 'close',
  477. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  478. 'client-response-num' => 1,
  479. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  480. 'client-peer' => '192.168.122.217:80',
  481. 'content-length' => '322',
  482. '::std_case' => {
  483. 'client-date' => 'Client-Date',
  484. 'x-powered-by' => 'X-Powered-By',
  485. 'client-response-num' => 'Client-Response-Num',
  486. 'client-peer' => 'Client-Peer'
  487. },
  488. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  489. 'content-type' => 'application/json; charset=utf-8',
  490. 'server' => 'Apache/2.4.7 (Ubuntu)'
  491. }, 'HTTP::Headers' );
  492. $VAR5 = '[{"id":10,"title":"STORAGE TANKS SEARED","section_id":10,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1419364929,"updated_by":1,"updated_on":1419364929,"estimate":null,"estimate_forecast":null,"suite_id":9,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":11,"title":"NOT SO SEARED AFTER ARR","section_id":10,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1419364929,"updated_by":1,"updated_on":1419364929,"estimate":null,"estimate_forecast":null,"suite_id":9,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  493. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  494. }
  495. {
  496. $VAR1 = 'index.php?/api/v2/get_cases/10&suite_id=9&section_id=9';
  497. $VAR2 = '200';
  498. $VAR3 = 'OK';
  499. $VAR4 = bless( {
  500. 'connection' => 'close',
  501. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  502. 'client-response-num' => 1,
  503. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  504. 'client-peer' => '192.168.122.217:80',
  505. 'content-length' => '322',
  506. '::std_case' => {
  507. 'client-date' => 'Client-Date',
  508. 'x-powered-by' => 'X-Powered-By',
  509. 'client-response-num' => 'Client-Response-Num',
  510. 'client-peer' => 'Client-Peer'
  511. },
  512. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  513. 'content-type' => 'application/json; charset=utf-8',
  514. 'server' => 'Apache/2.4.7 (Ubuntu)'
  515. }, 'HTTP::Headers' );
  516. $VAR5 = '[{"id":8,"title":"STROGGIFY POPULATION CENTERS","section_id":9,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1419364929,"updated_by":1,"updated_on":1419364929,"estimate":null,"estimate_forecast":null,"suite_id":9,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  517. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  518. }
  519. {
  520. $VAR1 = 'index.php?/api/v2/get_case/8';
  521. $VAR2 = '200';
  522. $VAR3 = 'OK';
  523. $VAR4 = bless( {
  524. 'connection' => 'close',
  525. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  526. 'client-response-num' => 1,
  527. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  528. 'client-peer' => '192.168.122.217:80',
  529. 'content-length' => '320',
  530. '::std_case' => {
  531. 'client-date' => 'Client-Date',
  532. 'x-powered-by' => 'X-Powered-By',
  533. 'client-response-num' => 'Client-Response-Num',
  534. 'client-peer' => 'Client-Peer'
  535. },
  536. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  537. 'content-type' => 'application/json; charset=utf-8',
  538. 'server' => 'Apache/2.4.7 (Ubuntu)'
  539. }, 'HTTP::Headers' );
  540. $VAR5 = '{"id":8,"title":"STROGGIFY POPULATION CENTERS","section_id":9,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1419364929,"updated_by":1,"updated_on":1419364929,"estimate":null,"estimate_forecast":null,"suite_id":9,"custom_preconds":null,"custom_steps":null,"custom_expected":null}';
  541. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  542. }
  543. {
  544. $VAR1 = 'index.php?/api/v2/add_run/9';
  545. $VAR2 = '200';
  546. $VAR3 = 'OK';
  547. $VAR4 = bless( {
  548. 'connection' => 'close',
  549. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  550. 'client-response-num' => 1,
  551. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  552. 'client-peer' => '192.168.122.217:80',
  553. 'content-length' => '654',
  554. '::std_case' => {
  555. 'client-date' => 'Client-Date',
  556. 'x-powered-by' => 'X-Powered-By',
  557. 'client-response-num' => 'Client-Response-Num',
  558. 'client-peer' => 'Client-Peer'
  559. },
  560. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  561. 'content-type' => 'application/json; charset=utf-8',
  562. 'server' => 'Apache/2.4.7 (Ubuntu)'
  563. }, 'HTTP::Headers' );
  564. $VAR5 = '{"id":22,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1419364929,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/22"}';
  565. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  566. }
  567. {
  568. $VAR1 = 'index.php?/api/v2/add_run/10';
  569. $VAR2 = '200';
  570. $VAR3 = 'OK';
  571. $VAR4 = bless( {
  572. 'connection' => 'close',
  573. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  574. 'client-response-num' => 1,
  575. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  576. 'client-peer' => '192.168.122.217:80',
  577. 'content-length' => '654',
  578. '::std_case' => {
  579. 'client-date' => 'Client-Date',
  580. 'x-powered-by' => 'X-Powered-By',
  581. 'client-response-num' => 'Client-Response-Num',
  582. 'client-peer' => 'Client-Peer'
  583. },
  584. 'client-date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  585. 'content-type' => 'application/json; charset=utf-8',
  586. 'server' => 'Apache/2.4.7 (Ubuntu)'
  587. }, 'HTTP::Headers' );
  588. $VAR5 = '{"id":8675309,"suite_id":9,"name":"TestingSuite2","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1419364929,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/22"}';
  589. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  590. }
  591. {
  592. $VAR1 = 'index.php?/api/v2/get_runs/10';
  593. $VAR2 = '200';
  594. $VAR3 = 'OK';
  595. $VAR4 = bless( {
  596. 'connection' => 'close',
  597. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  598. 'client-response-num' => 1,
  599. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  600. 'client-peer' => '192.168.122.217:80',
  601. 'content-length' => '656',
  602. '::std_case' => {
  603. 'client-date' => 'Client-Date',
  604. 'x-powered-by' => 'X-Powered-By',
  605. 'client-response-num' => 'Client-Response-Num',
  606. 'client-peer' => 'Client-Peer'
  607. },
  608. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  609. 'content-type' => 'application/json; charset=utf-8',
  610. 'server' => 'Apache/2.4.7 (Ubuntu)'
  611. }, 'HTTP::Headers' );
  612. $VAR5 = '[
  613. {"id":1,"suite_id":9,"name":"TestingSuite","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1419364929,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/22"},
  614. {"id":2,"suite_id":9,"name":"OtherOtherSuite","description":"bah","completed_on":null,"milestone_id":8, "created_on":1},
  615. {"id":3,"suite_id":9,"name":"FinalRun","description":"Tests finality","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":1,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1419364929,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/22"},{"id":1099,"suite_id":5,"name":"lockRun","description":"Locky tests","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":5,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":1,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":null,"created_on":1437073290,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1099"},
  616. {"id":9999,"suite_id":9,"name":"ClosedRun","description":"Locked up, they wont let meeee out","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":true,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":5,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":1,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":null,"created_on":1437073290,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/9999"}]';
  617. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  618. }
  619. {
  620. $VAR1 = 'index.php?/api/v2/get_run/22';
  621. $VAR2 = '200';
  622. $VAR3 = 'OK';
  623. $VAR4 = bless( {
  624. 'connection' => 'close',
  625. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  626. 'client-response-num' => 1,
  627. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  628. 'client-peer' => '192.168.122.217:80',
  629. 'content-length' => '654',
  630. '::std_case' => {
  631. 'client-date' => 'Client-Date',
  632. 'x-powered-by' => 'X-Powered-By',
  633. 'client-response-num' => 'Client-Response-Num',
  634. 'client-peer' => 'Client-Peer'
  635. },
  636. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  637. 'content-type' => 'application/json; charset=utf-8',
  638. 'server' => 'Apache/2.4.7 (Ubuntu)'
  639. }, 'HTTP::Headers' );
  640. $VAR5 = '{"id":22,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1419364929,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/22"}';
  641. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  642. }
  643. {
  644. $VAR1 = 'index.php?/api/v2/get_run/24';
  645. $VAR2 = '200';
  646. $VAR3 = 'OK';
  647. $VAR4 = bless( {
  648. 'connection' => 'close',
  649. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  650. 'client-response-num' => 1,
  651. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  652. 'client-peer' => '192.168.122.217:80',
  653. 'content-length' => '654',
  654. '::std_case' => {
  655. 'client-date' => 'Client-Date',
  656. 'x-powered-by' => 'X-Powered-By',
  657. 'client-response-num' => 'Client-Response-Num',
  658. 'client-peer' => 'Client-Peer'
  659. },
  660. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  661. 'content-type' => 'application/json; charset=utf-8',
  662. 'server' => 'Apache/2.4.7 (Ubuntu)'
  663. }, 'HTTP::Headers' );
  664. $VAR5 = '{"id":22,"suite_id":9,"name":"Executing the great plan","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1419364929,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/22"}';
  665. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  666. }
  667. {
  668. $VAR1 = 'index.php?/api/v2/get_run/1';
  669. $VAR2 = '200';
  670. $VAR3 = 'OK';
  671. $VAR4 = bless( {
  672. 'connection' => 'close',
  673. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  674. 'client-response-num' => 1,
  675. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  676. 'client-peer' => '192.168.122.217:80',
  677. 'content-length' => '654',
  678. '::std_case' => {
  679. 'client-date' => 'Client-Date',
  680. 'x-powered-by' => 'X-Powered-By',
  681. 'client-response-num' => 'Client-Response-Num',
  682. 'client-peer' => 'Client-Peer'
  683. },
  684. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  685. 'content-type' => 'application/json; charset=utf-8',
  686. 'server' => 'Apache/2.4.7 (Ubuntu)'
  687. }, 'HTTP::Headers' );
  688. $VAR5 = '{"id":22,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1419364929,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/22"}';
  689. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  690. }
  691. {
  692. $VAR1 = 'index.php?/api/v2/get_run/3';
  693. $VAR2 = '200';
  694. $VAR3 = 'OK';
  695. $VAR4 = bless( {
  696. 'connection' => 'close',
  697. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  698. 'client-response-num' => 1,
  699. 'date' => 'Tue, 23 Dec 2014 20:02:09 GMT',
  700. 'client-peer' => '192.168.122.217:80',
  701. 'content-length' => '656',
  702. '::std_case' => {
  703. 'client-date' => 'Client-Date',
  704. 'x-powered-by' => 'X-Powered-By',
  705. 'client-response-num' => 'Client-Response-Num',
  706. 'client-peer' => 'Client-Peer'
  707. },
  708. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  709. 'content-type' => 'application/json; charset=utf-8',
  710. 'server' => 'Apache/2.4.7 (Ubuntu)'
  711. }, 'HTTP::Headers' );
  712. $VAR5 = '{"id":3,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":1,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":10,"plan_id":null,"created_on":1419364929,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/3"}';
  713. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  714. }
  715. {
  716. $VAR1 = 'index.php?/api/v2/add_milestone/9';
  717. $VAR2 = '200';
  718. $VAR3 = 'OK';
  719. $VAR4 = bless( {
  720. 'connection' => 'close',
  721. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  722. 'client-response-num' => 1,
  723. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  724. 'client-peer' => '192.168.122.217:80',
  725. 'content-length' => '244',
  726. '::std_case' => {
  727. 'client-date' => 'Client-Date',
  728. 'x-powered-by' => 'X-Powered-By',
  729. 'client-response-num' => 'Client-Response-Num',
  730. 'client-peer' => 'Client-Peer'
  731. },
  732. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  733. 'content-type' => 'application/json; charset=utf-8',
  734. 'server' => 'Apache/2.4.7 (Ubuntu)'
  735. }, 'HTTP::Headers' );
  736. $VAR5 = '{"id":8,"name":"Humanity Exterminated","description":"Kill quota reached if not achieved in 5 years","due_on":1577152930,"is_completed":false,"completed_on":null,"project_id":9,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/milestones\\/view\\/8"}';
  737. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  738. }
  739. {
  740. $VAR1 = 'index.php?/api/v2/get_milestones/9';
  741. $VAR2 = '200';
  742. $VAR3 = 'OK';
  743. $VAR4 = bless( {
  744. 'connection' => 'close',
  745. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  746. 'client-response-num' => 1,
  747. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  748. 'client-peer' => '192.168.122.217:80',
  749. 'content-length' => '246',
  750. '::std_case' => {
  751. 'client-date' => 'Client-Date',
  752. 'x-powered-by' => 'X-Powered-By',
  753. 'client-response-num' => 'Client-Response-Num',
  754. 'client-peer' => 'Client-Peer'
  755. },
  756. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  757. 'content-type' => 'application/json; charset=utf-8',
  758. 'server' => 'Apache/2.4.7 (Ubuntu)'
  759. }, 'HTTP::Headers' );
  760. $VAR5 = '[{"id":8,"name":"Humanity Exterminated","description":"Kill quota reached if not achieved in 5 years","due_on":1577152930,"is_completed":false,"completed_on":null,"project_id":9,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/milestones\\/view\\/8"}]';
  761. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  762. }
  763. {
  764. $VAR1 = 'index.php?/api/v2/get_milestones/9';
  765. $VAR2 = '200';
  766. $VAR3 = 'OK';
  767. $VAR4 = bless( {
  768. 'connection' => 'close',
  769. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  770. 'client-response-num' => 1,
  771. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  772. 'client-peer' => '192.168.122.217:80',
  773. 'content-length' => '246',
  774. '::std_case' => {
  775. 'client-date' => 'Client-Date',
  776. 'x-powered-by' => 'X-Powered-By',
  777. 'client-response-num' => 'Client-Response-Num',
  778. 'client-peer' => 'Client-Peer'
  779. },
  780. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  781. 'content-type' => 'application/json; charset=utf-8',
  782. 'server' => 'Apache/2.4.7 (Ubuntu)'
  783. }, 'HTTP::Headers' );
  784. $VAR5 = '[{"id":8,"name":"Humanity Exterminated","description":"Kill quota reached if not achieved in 5 years","due_on":1577152930,"is_completed":false,"completed_on":null,"project_id":9,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/milestones\\/view\\/8"}]';
  785. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  786. }
  787. {
  788. $VAR1 = 'index.php?/api/v2/get_milestone/8';
  789. $VAR2 = '200';
  790. $VAR3 = 'OK';
  791. $VAR4 = bless( {
  792. 'connection' => 'close',
  793. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  794. 'client-response-num' => 1,
  795. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  796. 'client-peer' => '192.168.122.217:80',
  797. 'content-length' => '244',
  798. '::std_case' => {
  799. 'client-date' => 'Client-Date',
  800. 'x-powered-by' => 'X-Powered-By',
  801. 'client-response-num' => 'Client-Response-Num',
  802. 'client-peer' => 'Client-Peer'
  803. },
  804. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  805. 'content-type' => 'application/json; charset=utf-8',
  806. 'server' => 'Apache/2.4.7 (Ubuntu)'
  807. }, 'HTTP::Headers' );
  808. $VAR5 = '{"id":8,"name":"Humanity Exterminated","description":"Kill quota reached if not achieved in 5 years","due_on":1577152930,"is_completed":false,"completed_on":null,"project_id":9,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/milestones\\/view\\/8"}';
  809. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  810. }
  811. {
  812. $VAR1 = 'index.php?/api/v2/add_plan/9';
  813. $VAR2 = '200';
  814. $VAR3 = 'OK';
  815. $VAR4 = bless( {
  816. 'connection' => 'close',
  817. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  818. 'client-response-num' => 1,
  819. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  820. 'client-peer' => '192.168.122.217:80',
  821. 'content-length' => '1289',
  822. '::std_case' => {
  823. 'client-date' => 'Client-Date',
  824. 'x-powered-by' => 'X-Powered-By',
  825. 'client-response-num' => 'Client-Response-Num',
  826. 'client-peer' => 'Client-Peer'
  827. },
  828. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  829. 'content-type' => 'application/json; charset=utf-8',
  830. 'server' => 'Apache/2.4.7 (Ubuntu)'
  831. }, 'HTTP::Headers' );
  832. $VAR5 = '{"id":23,"name":"GosPlan","description":"Soviet 5-year agriculture plan to liquidate Kulaks","milestone_id":8,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"created_on":1419364930,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/23","entries":[{"id":"271443a5-aacf-467e-8993-b4f7001195cf","suite_id":9,"name":"Executing the great plan","runs":[{"id":24,"suite_id":9,"name":"Executing the great plan","description":null,"milestone_id":8,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":23,"entry_index":1,"entry_id":"271443a5-aacf-467e-8993-b4f7001195cf","config":null,"config_ids":[],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/24"}]}]}';
  833. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  834. }
  835. {
  836. $VAR1 = 'index.php?/api/v2/add_plan/10';
  837. $VAR2 = '200';
  838. $VAR3 = 'OK';
  839. $VAR4 = bless( {
  840. 'connection' => 'close',
  841. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  842. 'client-response-num' => 1,
  843. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  844. 'client-peer' => '192.168.122.217:80',
  845. 'content-length' => '1289',
  846. '::std_case' => {
  847. 'client-date' => 'Client-Date',
  848. 'x-powered-by' => 'X-Powered-By',
  849. 'client-response-num' => 'Client-Response-Num',
  850. 'client-peer' => 'Client-Peer'
  851. },
  852. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  853. 'content-type' => 'application/json; charset=utf-8',
  854. 'server' => 'Apache/2.4.7 (Ubuntu)'
  855. }, 'HTTP::Headers' );
  856. $VAR5 = '{"id":999,"name":"BogoPlan","description":"Auto-created run","milestone_id":8,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"created_on":1419364930,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/999","entries":[]}';
  857. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  858. }
  859. {
  860. $VAR1 = 'index.php?/api/v2/get_plans/10';
  861. $VAR2 = '200';
  862. $VAR3 = 'OK';
  863. $VAR4 = bless( {
  864. 'connection' => 'close',
  865. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  866. 'client-response-num' => 1,
  867. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  868. 'client-peer' => '192.168.122.217:80',
  869. 'content-length' => '554',
  870. '::std_case' => {
  871. 'client-date' => 'Client-Date',
  872. 'x-powered-by' => 'X-Powered-By',
  873. 'client-response-num' => 'Client-Response-Num',
  874. 'client-peer' => 'Client-Peer'
  875. },
  876. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  877. 'content-type' => 'application/json; charset=utf-8',
  878. 'server' => 'Apache/2.4.7 (Ubuntu)'
  879. }, 'HTTP::Headers' );
  880. $VAR5 = '[{"id":23,"name":"GosPlan","description":"Soviet 5-year agriculture plan to liquidate Kulaks","milestone_id":8,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"created_on":1419364930,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/23"},
  881. {"id":24,"name":"mah dubz plan","description":"bogozone","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":10,"created_on":1419364930,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/24"},
  882. {"id":1094,"name":"HooHaaPlan","description":"zippy","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":4,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":10,"created_on":1429586939,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/1094"},
  883. {"id":1096,"name":"FinalPlan","description":"zippy","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":4,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":10,"created_on":1429586939,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/1096"},
  884. {"id":9999,"name":"ClosedPlan","description":"zippy","milestone_id":null,"assignedto_id":null,"is_completed":true,"completed_on":null,"passed_count":4,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":10,"created_on":1429586939,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/9999"}]';
  885. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  886. }
  887. {
  888. $VAR1 = 'index.php?/api/v2/get_plan/23';
  889. $VAR2 = '200';
  890. $VAR3 = 'OK';
  891. $VAR4 = bless( {
  892. 'connection' => 'close',
  893. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  894. 'client-response-num' => 1,
  895. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  896. 'client-peer' => '192.168.122.217:80',
  897. 'content-length' => '1289',
  898. '::std_case' => {
  899. 'client-date' => 'Client-Date',
  900. 'x-powered-by' => 'X-Powered-By',
  901. 'client-response-num' => 'Client-Response-Num',
  902. 'client-peer' => 'Client-Peer'
  903. },
  904. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  905. 'content-type' => 'application/json; charset=utf-8',
  906. 'server' => 'Apache/2.4.7 (Ubuntu)'
  907. }, 'HTTP::Headers' );
  908. $VAR5 = '{"id":23,"name":"GosPlan","description":"Soviet 5-year agriculture plan to liquidate Kulaks","milestone_id":8,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":10,"created_on":1419364930,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/23","entries":[{"id":"271443a5-aacf-467e-8993-b4f7001195cf","suite_id":9,"name":"Executing the great plan","runs":[{"id":1,"suite_id":9,"name":"Executing the great plan","description":null,"milestone_id":8,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":23,"entry_index":1,"entry_id":"271443a5-aacf-467e-8993-b4f7001195cf","config":"testConfig","config_ids":[4],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/24"}]}]}';
  909. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  910. }
  911. {
  912. $VAR1 = 'index.php?/api/v2/get_plan/1096';
  913. $VAR2 = '200';
  914. $VAR3 = 'OK';
  915. $VAR4 = bless( {
  916. 'connection' => 'close',
  917. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  918. 'client-response-num' => 1,
  919. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  920. 'client-peer' => '192.168.122.217:80',
  921. 'content-length' => '1289',
  922. '::std_case' => {
  923. 'client-date' => 'Client-Date',
  924. 'x-powered-by' => 'X-Powered-By',
  925. 'client-response-num' => 'Client-Response-Num',
  926. 'client-peer' => 'Client-Peer'
  927. },
  928. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  929. 'content-type' => 'application/json; charset=utf-8',
  930. 'server' => 'Apache/2.4.7 (Ubuntu)'
  931. }, 'HTTP::Headers' );
  932. $VAR5 = '{"id":1096,"name":"FinalPlan","description":"Soviet 5-year agriculture plan to liquidate Kulaks","milestone_id":8,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":4,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":10,"created_on":1419364930,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/23","entries":[{"id":"271443a5-aacf-467e-8993-b4f7001195cf","suite_id":9,"name":"FinalRun","runs":[{"id":1,"suite_id":9,"name":"FinalRun","description":null,"milestone_id":8,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"passed_count":4,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":23,"entry_index":1,"entry_id":"271443a5-aacf-467e-8993-b4f7001195cf","config":"testConfig","config_ids":[4],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1096"}]}]}';
  933. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  934. }
  935. {
  936. $VAR1 = 'index.php?/api/v2/close_plan/23';
  937. $VAR2 = '200';
  938. $VAR3 = 'OK';
  939. $VAR4 = bless( {
  940. 'connection' => 'close',
  941. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  942. 'client-response-num' => 1,
  943. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  944. 'client-peer' => '192.168.122.217:80',
  945. 'content-length' => '1289',
  946. '::std_case' => {
  947. 'client-date' => 'Client-Date',
  948. 'x-powered-by' => 'X-Powered-By',
  949. 'client-response-num' => 'Client-Response-Num',
  950. 'client-peer' => 'Client-Peer'
  951. },
  952. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  953. 'content-type' => 'application/json; charset=utf-8',
  954. 'server' => 'Apache/2.4.7 (Ubuntu)'
  955. }, 'HTTP::Headers' );
  956. $VAR5 = '{"id":23,"name":"GosPlan","description":"Soviet 5-year agriculture plan to liquidate Kulaks","milestone_id":8,"assignedto_id":null,"is_completed":true,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":10,"created_on":1419364930,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/23","entries":[{"id":"271443a5-aacf-467e-8993-b4f7001195cf","suite_id":9,"name":"Executing the great plan","runs":[{"id":1,"suite_id":9,"name":"Executing the great plan","description":null,"milestone_id":8,"assignedto_id":null,"include_all":true,"is_completed":true,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":23,"entry_index":1,"entry_id":"271443a5-aacf-467e-8993-b4f7001195cf","config":"testConfig","config_ids":[4],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/24"}]}]}';
  957. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  958. }
  959. {
  960. $VAR1 = 'index.php?/api/v2/close_plan/1096';
  961. $VAR2 = '200';
  962. $VAR3 = 'OK';
  963. $VAR4 = bless( {
  964. 'connection' => 'close',
  965. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  966. 'client-response-num' => 1,
  967. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  968. 'client-peer' => '192.168.122.217:80',
  969. 'content-length' => '1289',
  970. '::std_case' => {
  971. 'client-date' => 'Client-Date',
  972. 'x-powered-by' => 'X-Powered-By',
  973. 'client-response-num' => 'Client-Response-Num',
  974. 'client-peer' => 'Client-Peer'
  975. },
  976. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  977. 'content-type' => 'application/json; charset=utf-8',
  978. 'server' => 'Apache/2.4.7 (Ubuntu)'
  979. }, 'HTTP::Headers' );
  980. $VAR5 = '{"id":23,"name":"GosPlan","description":"Soviet 5-year agriculture plan to liquidate Kulaks","milestone_id":8,"assignedto_id":null,"is_completed":true,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":10,"created_on":1419364930,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/23","entries":[{"id":"271443a5-aacf-467e-8993-b4f7001195cf","suite_id":9,"name":"Executing the great plan","runs":[{"id":1,"suite_id":9,"name":"Executing the great plan","description":null,"milestone_id":8,"assignedto_id":null,"include_all":true,"is_completed":true,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":23,"entry_index":1,"entry_id":"271443a5-aacf-467e-8993-b4f7001195cf","config":"testConfig","config_ids":[4],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/24"}]}]}';
  981. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  982. }
  983. {
  984. $VAR1 = 'index.php?/api/v2/get_plan/24';
  985. $VAR2 = '200';
  986. $VAR3 = 'OK';
  987. $VAR4 = bless( {
  988. 'connection' => 'close',
  989. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  990. 'client-response-num' => 1,
  991. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  992. 'client-peer' => '192.168.122.217:80',
  993. 'content-length' => '1289',
  994. '::std_case' => {
  995. 'client-date' => 'Client-Date',
  996. 'x-powered-by' => 'X-Powered-By',
  997. 'client-response-num' => 'Client-Response-Num',
  998. 'client-peer' => 'Client-Peer'
  999. },
  1000. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1001. 'content-type' => 'application/json; charset=utf-8',
  1002. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1003. }, 'HTTP::Headers' );
  1004. $VAR5 = '{"id":24,"name":"mah dubz plan","description":"bogoplan","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":10,"created_on":1419364930,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/24","entries":[{"id":"271443a5-aacf-467e-8993-b4f7001195cf","suite_id":9,"name":"Executing the great plan","runs":[{"id":1,"suite_id":9,"name":"TestingSuite","description":null,"milestone_id":8,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":23,"entry_index":1,"entry_id":"271443a5-aacf-467e-8993-b4f7001195cf","config":"testConfig","config_ids":[4],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/24"}]}]}';
  1005. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1006. }
  1007. {
  1008. $VAR1 = 'index.php?/api/v2/get_tests/22';
  1009. $VAR2 = '200';
  1010. $VAR3 = 'OK';
  1011. $VAR4 = bless( {
  1012. 'connection' => 'close',
  1013. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1014. 'client-response-num' => 1,
  1015. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1016. 'client-peer' => '192.168.122.217:80',
  1017. 'content-length' => '276',
  1018. '::std_case' => {
  1019. 'client-date' => 'Client-Date',
  1020. 'x-powered-by' => 'X-Powered-By',
  1021. 'client-response-num' => 'Client-Response-Num',
  1022. 'client-peer' => 'Client-Peer'
  1023. },
  1024. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1025. 'content-type' => 'application/json; charset=utf-8',
  1026. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1027. }, 'HTTP::Headers' );
  1028. $VAR5 = '[{"id":15,"case_id":8,"status_id":1,"assignedto_id":null,"run_id":22,"title":"STROGGIFY POPULATION CENTERS","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  1029. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1030. }
  1031. {
  1032. $VAR1 = 'index.php?/api/v2/get_tests/3';
  1033. $VAR2 = '200';
  1034. $VAR3 = 'OK';
  1035. $VAR4 = bless( {
  1036. 'connection' => 'close',
  1037. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1038. 'client-response-num' => 1,
  1039. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1040. 'client-peer' => '192.168.122.217:80',
  1041. 'content-length' => '276',
  1042. '::std_case' => {
  1043. 'client-date' => 'Client-Date',
  1044. 'x-powered-by' => 'X-Powered-By',
  1045. 'client-response-num' => 'Client-Response-Num',
  1046. 'client-peer' => 'Client-Peer'
  1047. },
  1048. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1049. 'content-type' => 'application/json; charset=utf-8',
  1050. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1051. }, 'HTTP::Headers' );
  1052. $VAR5 = '[{"id":15,"case_id":8,"status_id":1,"assignedto_id":null,"run_id":3,"title":"skip.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  1053. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1054. }
  1055. {
  1056. $VAR1 = 'index.php?/api/v2/get_tests/22&status_id=1';
  1057. $VAR2 = '200';
  1058. $VAR3 = 'OK';
  1059. $VAR4 = bless( {
  1060. 'connection' => 'close',
  1061. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1062. 'client-response-num' => 1,
  1063. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1064. 'client-peer' => '192.168.122.217:80',
  1065. 'content-length' => '276',
  1066. '::std_case' => {
  1067. 'client-date' => 'Client-Date',
  1068. 'x-powered-by' => 'X-Powered-By',
  1069. 'client-response-num' => 'Client-Response-Num',
  1070. 'client-peer' => 'Client-Peer'
  1071. },
  1072. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1073. 'content-type' => 'application/json; charset=utf-8',
  1074. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1075. }, 'HTTP::Headers' );
  1076. $VAR5 = '[{"id":15,"case_id":8,"status_id":1,"assignedto_id":null,"run_id":22,"title":"STROGGIFY POPULATION CENTERS","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  1077. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1078. }
  1079. {
  1080. $VAR1 = 'index.php?/api/v2/get_tests/22&status_id=2';
  1081. $VAR2 = '200';
  1082. $VAR3 = 'OK';
  1083. $VAR4 = bless( {
  1084. 'connection' => 'close',
  1085. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1086. 'client-response-num' => 1,
  1087. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1088. 'client-peer' => '192.168.122.217:80',
  1089. 'content-length' => '276',
  1090. '::std_case' => {
  1091. 'client-date' => 'Client-Date',
  1092. 'x-powered-by' => 'X-Powered-By',
  1093. 'client-response-num' => 'Client-Response-Num',
  1094. 'client-peer' => 'Client-Peer'
  1095. },
  1096. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1097. 'content-type' => 'application/json; charset=utf-8',
  1098. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1099. }, 'HTTP::Headers' );
  1100. $VAR5 = '[]';
  1101. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1102. }
  1103. {
  1104. $VAR1 = 'index.php?/api/v2/get_tests/1&status_id=5';
  1105. $VAR2 = '200';
  1106. $VAR3 = 'OK';
  1107. $VAR4 = bless( {
  1108. 'connection' => 'close',
  1109. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1110. 'client-response-num' => 1,
  1111. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1112. 'client-peer' => '192.168.122.217:80',
  1113. 'content-length' => '276',
  1114. '::std_case' => {
  1115. 'client-date' => 'Client-Date',
  1116. 'x-powered-by' => 'X-Powered-By',
  1117. 'client-response-num' => 'Client-Response-Num',
  1118. 'client-peer' => 'Client-Peer'
  1119. },
  1120. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1121. 'content-type' => 'application/json; charset=utf-8',
  1122. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1123. }, 'HTTP::Headers' );
  1124. $VAR5 = '[]';
  1125. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1126. }
  1127. {
  1128. $VAR1 = 'index.php?/api/v2/get_tests/2';
  1129. $VAR2 = '200';
  1130. $VAR3 = 'OK';
  1131. $VAR4 = bless( {
  1132. 'connection' => 'close',
  1133. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1134. 'client-response-num' => 1,
  1135. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1136. 'client-peer' => '192.168.122.217:80',
  1137. 'content-length' => '276',
  1138. '::std_case' => {
  1139. 'client-date' => 'Client-Date',
  1140. 'x-powered-by' => 'X-Powered-By',
  1141. 'client-response-num' => 'Client-Response-Num',
  1142. 'client-peer' => 'Client-Peer'
  1143. },
  1144. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1145. 'content-type' => 'application/json; charset=utf-8',
  1146. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1147. }, 'HTTP::Headers' );
  1148. $VAR5 = '[{"id":15,"case_id":8,"status_id":3,"assignedto_id":null,"run_id":22,"title":"faker.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  1149. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1150. }
  1151. {
  1152. $VAR1 = 'index.php?/api/v2/get_tests/1';
  1153. $VAR2 = '200';
  1154. $VAR3 = 'OK';
  1155. $VAR4 = bless( {
  1156. 'connection' => 'close',
  1157. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1158. 'client-response-num' => 1,
  1159. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1160. 'client-peer' => '192.168.122.217:80',
  1161. 'content-length' => '276',
  1162. '::std_case' => {
  1163. 'client-date' => 'Client-Date',
  1164. 'x-powered-by' => 'X-Powered-By',
  1165. 'client-response-num' => 'Client-Response-Num',
  1166. 'client-peer' => 'Client-Peer'
  1167. },
  1168. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1169. 'content-type' => 'application/json; charset=utf-8',
  1170. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1171. }, 'HTTP::Headers' );
  1172. $VAR5 = '[{"id":15,"case_id":8,"status_id":3,"assignedto_id":null,"run_id":22,"title":"fake.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":15,"case_id":8,"status_id":3,"assignedto_id":null,"run_id":22,"title":"skip.test"},{"id":15,"case_id":8,"status_id":3,"assignedto_id":1,"run_id":22,"title":"NOT SO SEARED AFTER ARR"},{"id":15,"case_id":8,"status_id":3,"assignedto_id":1,"run_id":22,"title":"skipall.test"}]';
  1173. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1174. }
  1175. {
  1176. $VAR1 = 'index.php?/api/v2/get_tests/1&status_id=1';
  1177. $VAR2 = '200';
  1178. $VAR3 = 'OK';
  1179. $VAR4 = bless( {
  1180. 'connection' => 'close',
  1181. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1182. 'client-response-num' => 1,
  1183. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1184. 'client-peer' => '192.168.122.217:80',
  1185. 'content-length' => '276',
  1186. '::std_case' => {
  1187. 'client-date' => 'Client-Date',
  1188. 'x-powered-by' => 'X-Powered-By',
  1189. 'client-response-num' => 'Client-Response-Num',
  1190. 'client-peer' => 'Client-Peer'
  1191. },
  1192. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1193. 'content-type' => 'application/json; charset=utf-8',
  1194. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1195. }, 'HTTP::Headers' );
  1196. $VAR5 = '[{"id":15,"case_id":8,"status_id":3,"assignedto_id":null,"run_id":22,"title":"STORAGE TANKS SEARED","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":15,"case_id":8,"status_id":3,"assignedto_id":null,"run_id":22,"title":"NOT SO SEARED AFTER ARR"},{"id":15,"case_id":8,"status_id":3,"assignedto_id":1,"run_id":22,"title":"skipall.test"} ]';
  1197. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1198. }
  1199. {
  1200. $VAR1 = 'index.php?/api/v2/get_tests/777';
  1201. $VAR2 = '200';
  1202. $VAR3 = 'OK';
  1203. $VAR4 = bless( {
  1204. 'connection' => 'close',
  1205. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1206. 'client-response-num' => 1,
  1207. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1208. 'client-peer' => '192.168.122.217:80',
  1209. 'content-length' => '276',
  1210. '::std_case' => {
  1211. 'client-date' => 'Client-Date',
  1212. 'x-powered-by' => 'X-Powered-By',
  1213. 'client-response-num' => 'Client-Response-Num',
  1214. 'client-peer' => 'Client-Peer'
  1215. },
  1216. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1217. 'content-type' => 'application/json; charset=utf-8',
  1218. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1219. }, 'HTTP::Headers' );
  1220. $VAR5 = '[{"id":15,"case_id":8,"status_id":3,"assignedto_id":null,"run_id":22,"title":"fake.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":15,"case_id":8,"status_id":3,"assignedto_id":null,"run_id":22,"title":"skip.test"},{"id":15,"case_id":8,"status_id":3,"assignedto_id":1,"run_id":22,"title":"skipall.test"} ]';
  1221. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1222. }
  1223. {
  1224. $VAR1 = 'index.php?/api/v2/get_tests/8675309';
  1225. $VAR2 = '200';
  1226. $VAR3 = 'OK';
  1227. $VAR4 = bless( {
  1228. 'connection' => 'close',
  1229. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1230. 'client-response-num' => 1,
  1231. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1232. 'client-peer' => '192.168.122.217:80',
  1233. 'content-length' => '276',
  1234. '::std_case' => {
  1235. 'client-date' => 'Client-Date',
  1236. 'x-powered-by' => 'X-Powered-By',
  1237. 'client-response-num' => 'Client-Response-Num',
  1238. 'client-peer' => 'Client-Peer'
  1239. },
  1240. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1241. 'content-type' => 'application/json; charset=utf-8',
  1242. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1243. }, 'HTTP::Headers' );
  1244. $VAR5 = '[{"id":15,"case_id":8,"status_id":3,"assignedto_id":null,"run_id":22,"title":"fake.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":15,"case_id":8,"status_id":3,"assignedto_id":null,"run_id":22,"title":"skip.test"},{"id":15,"case_id":8,"status_id":3,"assignedto_id":null,"run_id":22,"title":"skipall.test"},{"id":16,"case_id":9,"status_id":3,"assignedto_id":null,"run_id":22,"title":"notests.test"},{"id":17,"case_id":10,"status_id":1,"assignedto_id":null,"run_id":22,"title":"pass.test"},{"id":18,"case_id":10,"status_id":1,"assignedto_id":null,"run_id":22,"title":"todo_pass.test"}]';
  1245. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1246. }
  1247. {
  1248. $VAR1 = 'index.php?/api/v2/get_test/15';
  1249. $VAR2 = '200';
  1250. $VAR3 = 'OK';
  1251. $VAR4 = bless( {
  1252. 'connection' => 'close',
  1253. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1254. 'client-response-num' => 1,
  1255. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1256. 'client-peer' => '192.168.122.217:80',
  1257. 'content-length' => '274',
  1258. '::std_case' => {
  1259. 'client-date' => 'Client-Date',
  1260. 'x-powered-by' => 'X-Powered-By',
  1261. 'client-response-num' => 'Client-Response-Num',
  1262. 'client-peer' => 'Client-Peer'
  1263. },
  1264. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1265. 'content-type' => 'application/json; charset=utf-8',
  1266. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1267. }, 'HTTP::Headers' );
  1268. $VAR5 = '{"id":15,"case_id":8,"status_id":3,"assignedto_id":null,"run_id":22,"title":"STROGGIFY POPULATION CENTERS","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}';
  1269. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1270. }
  1271. {
  1272. $VAR1 = 'index.php?/api/v2/get_result_fields';
  1273. $VAR2 = '200';
  1274. $VAR3 = 'OK';
  1275. $VAR4 = bless( {
  1276. 'connection' => 'close',
  1277. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1278. 'client-response-num' => 1,
  1279. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1280. 'client-peer' => '192.168.122.217:80',
  1281. 'content-length' => '2',
  1282. '::std_case' => {
  1283. 'client-date' => 'Client-Date',
  1284. 'x-powered-by' => 'X-Powered-By',
  1285. 'client-response-num' => 'Client-Response-Num',
  1286. 'client-peer' => 'Client-Peer'
  1287. },
  1288. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1289. 'content-type' => 'application/json; charset=utf-8',
  1290. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1291. }, 'HTTP::Headers' );
  1292. $VAR5 = '[{"display_order":1,"system_name":"custom_step_results","name":"step_results","description":"Step by step results","is_active":1,"type_id":11,"configs":[{"options":{"is_required":0,"format":"markdown","has_actual":1,"has_expected":1},"context":{"project_ids":[5,3,9],"is_global":1},"id":"43410543-edaf-44d2-91fc-58a6f9b3f743"},{"options":{"is_required":1,"format":"markdown","has_actual":1,"has_expected":1},"context":{"project_ids":[1],"is_global":1},"id":"0ab86184-0468-40d8-a385-a9b3a1ec41a4"},{"options":{"is_required":0,"format":"markdown","has_actual":1,"has_expected":1},"context":{"project_ids":[10],"is_global":1},"id":"43ebdf1f-c9b9-4b91-a729-5c9f21252f00"}],"id":6,"label":"Step Results"}]';
  1293. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1294. }
  1295. {
  1296. $VAR1 = 'index.php?/api/v2/get_statuses';
  1297. $VAR2 = '200';
  1298. $VAR3 = 'OK';
  1299. $VAR4 = bless( {
  1300. 'connection' => 'close',
  1301. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  1302. 'client-response-num' => 1,
  1303. 'date' => 'Thu, 16 Jul 2015 23:05:53 GMT',
  1304. 'client-peer' => '192.168.122.217:80',
  1305. 'content-length' => '1489',
  1306. '::std_case' => {
  1307. 'client-date' => 'Client-Date',
  1308. 'x-powered-by' => 'X-Powered-By',
  1309. 'client-response-num' => 'Client-Response-Num',
  1310. 'client-peer' => 'Client-Peer'
  1311. },
  1312. 'client-date' => 'Thu, 16 Jul 2015 23:05:53 GMT',
  1313. 'content-type' => 'application/json; charset=utf-8',
  1314. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1315. }, 'HTTP::Headers' );
  1316. $VAR5 = '[{"id":1,"name":"passed","label":"Passed","color_dark":6667107,"color_medium":9820525,"color_bright":12709313,"is_system":true,"is_untested":false,"is_final":true},{"id":2,"name":"blocked","label":"Blocked","color_dark":9474192,"color_medium":13684944,"color_bright":14737632,"is_system":true,"is_untested":false,"is_final":true},{"id":3,"name":"untested","label":"Untested","color_dark":11579568,"color_medium":15395562,"color_bright":15790320,"is_system":true,"is_untested":true,"is_final":false},{"id":4,"name":"retest","label":"Retest","color_dark":13026868,"color_medium":15593088,"color_bright":16448182,"is_system":true,"is_untested":false,"is_final":false},{"id":5,"name":"failed","label":"Failed","color_dark":14250867,"color_medium":15829135,"color_bright":16631751,"is_system":true,"is_untested":false,"is_final":true},{"id":6,"name":"skip","label":"Skipped","color_dark":0,"color_medium":10526880,"color_bright":13684944,"is_system":false,"is_untested":false,"is_final":true},{"id":7,"name":"todo_fail","label":"Todo Failed","color_dark":0,"color_medium":10526880,"color_bright":13684944,"is_system":false,"is_untested":false,"is_final":true},{"id":8,"name":"todo_pass","label":"Todo Passed","color_dark":0,"color_medium":10526880,"color_bright":13684944,"is_system":false,"is_untested":false,"is_final":true},{"id":9,"name":"locked","label":"Locked","color_dark":14730013,"color_medium":16772121,"color_bright":16110712,"is_system":false,"is_untested":false,"is_final":false}]';
  1317. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1318. }
  1319. {
  1320. $VAR1 = 'index.php?/api/v2/add_result/15';
  1321. $VAR2 = '200';
  1322. $VAR3 = 'OK';
  1323. $VAR4 = bless( {
  1324. 'connection' => 'close',
  1325. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1326. 'client-response-num' => 1,
  1327. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1328. 'client-peer' => '192.168.122.217:80',
  1329. 'content-length' => '174',
  1330. '::std_case' => {
  1331. 'client-date' => 'Client-Date',
  1332. 'x-powered-by' => 'X-Powered-By',
  1333. 'client-response-num' => 'Client-Response-Num',
  1334. 'client-peer' => 'Client-Peer'
  1335. },
  1336. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1337. 'content-type' => 'application/json; charset=utf-8',
  1338. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1339. }, 'HTTP::Headers' );
  1340. $VAR5 = '{"id":8,"test_id":15,"status_id":1,"created_by":1,"created_on":1419364931,"assignedto_id":null,"comment":"REAPER FORCES INBOUND","version":null,"elapsed":null,"defects":null}';
  1341. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1342. }
  1343. {
  1344. $VAR1 = 'index.php?/api/v2/add_result/16';
  1345. $VAR2 = '200';
  1346. $VAR3 = 'OK';
  1347. $VAR4 = bless( {
  1348. 'connection' => 'close',
  1349. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1350. 'client-response-num' => 1,
  1351. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1352. 'client-peer' => '192.168.122.217:80',
  1353. 'content-length' => '174',
  1354. '::std_case' => {
  1355. 'client-date' => 'Client-Date',
  1356. 'x-powered-by' => 'X-Powered-By',
  1357. 'client-response-num' => 'Client-Response-Num',
  1358. 'client-peer' => 'Client-Peer'
  1359. },
  1360. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1361. 'content-type' => 'application/json; charset=utf-8',
  1362. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1363. }, 'HTTP::Headers' );
  1364. $VAR5 = '{"id":9,"test_id":16,"status_id":2,"created_by":1,"created_on":1419364931,"assignedto_id":null,"comment":"REAPER FORCES INBOUND","version":null,"elapsed":null,"defects":null}';
  1365. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1366. }
  1367. {
  1368. $VAR1 = 'index.php?/api/v2/add_result/17';
  1369. $VAR2 = '200';
  1370. $VAR3 = 'OK';
  1371. $VAR4 = bless( {
  1372. 'connection' => 'close',
  1373. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1374. 'client-response-num' => 1,
  1375. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1376. 'client-peer' => '192.168.122.217:80',
  1377. 'content-length' => '174',
  1378. '::std_case' => {
  1379. 'client-date' => 'Client-Date',
  1380. 'x-powered-by' => 'X-Powered-By',
  1381. 'client-response-num' => 'Client-Response-Num',
  1382. 'client-peer' => 'Client-Peer'
  1383. },
  1384. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1385. 'content-type' => 'application/json; charset=utf-8',
  1386. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1387. }, 'HTTP::Headers' );
  1388. $VAR5 = '{"id":10,"test_id":17,"status_id":1,"created_by":1,"created_on":1419364931,"assignedto_id":null,"comment":"REAPER FORCES INBOUND","version":null,"elapsed":null,"defects":null}';
  1389. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1390. }
  1391. {
  1392. $VAR1 = 'index.php?/api/v2/add_result/18';
  1393. $VAR2 = '200';
  1394. $VAR3 = 'OK';
  1395. $VAR4 = bless( {
  1396. 'connection' => 'close',
  1397. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1398. 'client-response-num' => 1,
  1399. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1400. 'client-peer' => '192.168.122.217:80',
  1401. 'content-length' => '174',
  1402. '::std_case' => {
  1403. 'client-date' => 'Client-Date',
  1404. 'x-powered-by' => 'X-Powered-By',
  1405. 'client-response-num' => 'Client-Response-Num',
  1406. 'client-peer' => 'Client-Peer'
  1407. },
  1408. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1409. 'content-type' => 'application/json; charset=utf-8',
  1410. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1411. }, 'HTTP::Headers' );
  1412. $VAR5 = '{"id":10,"test_id":18,"status_id":8,"created_by":1,"created_on":1419364931,"assignedto_id":null,"comment":"REAPER FORCES INBOUND","version":null,"elapsed":null,"defects":null}';
  1413. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1414. }
  1415. {
  1416. $VAR1 = 'index.php?/api/v2/add_result/10';
  1417. $VAR2 = '200';
  1418. $VAR3 = 'OK';
  1419. $VAR4 = bless( {
  1420. 'connection' => 'close',
  1421. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1422. 'client-response-num' => 1,
  1423. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1424. 'client-peer' => '192.168.122.217:80',
  1425. 'content-length' => '174',
  1426. '::std_case' => {
  1427. 'client-date' => 'Client-Date',
  1428. 'x-powered-by' => 'X-Powered-By',
  1429. 'client-response-num' => 'Client-Response-Num',
  1430. 'client-peer' => 'Client-Peer'
  1431. },
  1432. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1433. 'content-type' => 'application/json; charset=utf-8',
  1434. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1435. }, 'HTTP::Headers' );
  1436. $VAR5 = '{"id":9,"test_id":10,"status_id":1,"created_by":1,"created_on":1419364931,"assignedto_id":null,"comment":"REAPER FORCES INBOUND","version":null,"elapsed":null,"defects":null}';
  1437. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1438. }
  1439. {
  1440. $VAR1 = 'index.php?/api/v2/add_result/11';
  1441. $VAR2 = '200';
  1442. $VAR3 = 'OK';
  1443. $VAR4 = bless( {
  1444. 'connection' => 'close',
  1445. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1446. 'client-response-num' => 1,
  1447. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1448. 'client-peer' => '192.168.122.217:80',
  1449. 'content-length' => '174',
  1450. '::std_case' => {
  1451. 'client-date' => 'Client-Date',
  1452. 'x-powered-by' => 'X-Powered-By',
  1453. 'client-response-num' => 'Client-Response-Num',
  1454. 'client-peer' => 'Client-Peer'
  1455. },
  1456. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1457. 'content-type' => 'application/json; charset=utf-8',
  1458. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1459. }, 'HTTP::Headers' );
  1460. $VAR5 = '{"id":9,"test_id":10,"status_id":1,"created_by":1,"created_on":1419364931,"assignedto_id":null,"comment":"REAPER FORCES INBOUND","version":null,"elapsed":null,"defects":null}';
  1461. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1462. }
  1463. {
  1464. $VAR1 = 'index.php?/api/v2/get_results/15';
  1465. $VAR2 = '200';
  1466. $VAR3 = 'OK';
  1467. $VAR4 = bless( {
  1468. 'connection' => 'close',
  1469. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1470. 'client-response-num' => 1,
  1471. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1472. 'client-peer' => '192.168.122.217:80',
  1473. 'content-length' => '176',
  1474. '::std_case' => {
  1475. 'client-date' => 'Client-Date',
  1476. 'x-powered-by' => 'X-Powered-By',
  1477. 'client-response-num' => 'Client-Response-Num',
  1478. 'client-peer' => 'Client-Peer'
  1479. },
  1480. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1481. 'content-type' => 'application/json; charset=utf-8',
  1482. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1483. }, 'HTTP::Headers' );
  1484. $VAR5 = '[{"id":8,"test_id":15,"status_id":1,"created_by":1,"created_on":1419364931,"assignedto_id":null,"comment":"REAPER FORCES INBOUND","version":null,"elapsed":null,"defects":null}]';
  1485. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1486. }
  1487. {
  1488. $VAR1 = 'index.php?/api/v2/get_results/1';
  1489. $VAR2 = '200';
  1490. $VAR3 = 'OK';
  1491. $VAR4 = bless( {
  1492. 'connection' => 'close',
  1493. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1494. 'client-response-num' => 1,
  1495. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1496. 'client-peer' => '192.168.122.217:80',
  1497. 'content-length' => '176',
  1498. '::std_case' => {
  1499. 'client-date' => 'Client-Date',
  1500. 'x-powered-by' => 'X-Powered-By',
  1501. 'client-response-num' => 'Client-Response-Num',
  1502. 'client-peer' => 'Client-Peer'
  1503. },
  1504. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1505. 'content-type' => 'application/json; charset=utf-8',
  1506. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1507. }, 'HTTP::Headers' );
  1508. $VAR5 = '[{"id":8,"test_id":15,"status_id":1,"created_by":1,"created_on":1419364931,"assignedto_id":null,"comment":"REAPER FORCES INBOUND","version":null,"elapsed":"2s","defects":null}]';
  1509. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1510. }
  1511. {
  1512. $VAR1 = 'index.php?/api/v2/delete_plan/23';
  1513. $VAR2 = '200';
  1514. $VAR3 = 'OK';
  1515. $VAR4 = bless( {
  1516. 'connection' => 'close',
  1517. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1518. 'client-response-num' => 1,
  1519. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1520. 'client-peer' => '192.168.122.217:80',
  1521. 'content-length' => '0',
  1522. '::std_case' => {
  1523. 'client-date' => 'Client-Date',
  1524. 'x-powered-by' => 'X-Powered-By',
  1525. 'client-response-num' => 'Client-Response-Num',
  1526. 'client-peer' => 'Client-Peer'
  1527. },
  1528. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1529. 'content-type' => 'application/json; charset=utf-8',
  1530. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1531. }, 'HTTP::Headers' );
  1532. $VAR5 = '';
  1533. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1534. }
  1535. {
  1536. $VAR1 = 'index.php?/api/v2/delete_milestone/8';
  1537. $VAR2 = '200';
  1538. $VAR3 = 'OK';
  1539. $VAR4 = bless( {
  1540. 'connection' => 'close',
  1541. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1542. 'client-response-num' => 1,
  1543. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1544. 'client-peer' => '192.168.122.217:80',
  1545. 'content-length' => '0',
  1546. '::std_case' => {
  1547. 'client-date' => 'Client-Date',
  1548. 'x-powered-by' => 'X-Powered-By',
  1549. 'client-response-num' => 'Client-Response-Num',
  1550. 'client-peer' => 'Client-Peer'
  1551. },
  1552. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1553. 'content-type' => 'application/json; charset=utf-8',
  1554. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1555. }, 'HTTP::Headers' );
  1556. $VAR5 = '';
  1557. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1558. }
  1559. {
  1560. $VAR1 = 'index.php?/api/v2/delete_run/22';
  1561. $VAR2 = '200';
  1562. $VAR3 = 'OK';
  1563. $VAR4 = bless( {
  1564. 'connection' => 'close',
  1565. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1566. 'client-response-num' => 1,
  1567. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1568. 'client-peer' => '192.168.122.217:80',
  1569. 'content-length' => '0',
  1570. '::std_case' => {
  1571. 'client-date' => 'Client-Date',
  1572. 'x-powered-by' => 'X-Powered-By',
  1573. 'client-response-num' => 'Client-Response-Num',
  1574. 'client-peer' => 'Client-Peer'
  1575. },
  1576. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1577. 'content-type' => 'application/json; charset=utf-8',
  1578. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1579. }, 'HTTP::Headers' );
  1580. $VAR5 = '';
  1581. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1582. }
  1583. {
  1584. $VAR1 = 'index.php?/api/v2/delete_case/8';
  1585. $VAR2 = '200';
  1586. $VAR3 = 'OK';
  1587. $VAR4 = bless( {
  1588. 'connection' => 'close',
  1589. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1590. 'client-response-num' => 1,
  1591. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1592. 'client-peer' => '192.168.122.217:80',
  1593. 'content-length' => '0',
  1594. '::std_case' => {
  1595. 'client-date' => 'Client-Date',
  1596. 'x-powered-by' => 'X-Powered-By',
  1597. 'client-response-num' => 'Client-Response-Num',
  1598. 'client-peer' => 'Client-Peer'
  1599. },
  1600. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1601. 'content-type' => 'application/json; charset=utf-8',
  1602. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1603. }, 'HTTP::Headers' );
  1604. $VAR5 = '';
  1605. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1606. }
  1607. {
  1608. $VAR1 = 'index.php?/api/v2/delete_section/9';
  1609. $VAR2 = '200';
  1610. $VAR3 = 'OK';
  1611. $VAR4 = bless( {
  1612. 'connection' => 'close',
  1613. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1614. 'client-response-num' => 1,
  1615. 'date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1616. 'client-peer' => '192.168.122.217:80',
  1617. 'content-length' => '0',
  1618. '::std_case' => {
  1619. 'client-date' => 'Client-Date',
  1620. 'x-powered-by' => 'X-Powered-By',
  1621. 'client-response-num' => 'Client-Response-Num',
  1622. 'client-peer' => 'Client-Peer'
  1623. },
  1624. 'client-date' => 'Tue, 23 Dec 2014 20:02:11 GMT',
  1625. 'content-type' => 'application/json; charset=utf-8',
  1626. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1627. }, 'HTTP::Headers' );
  1628. $VAR5 = '';
  1629. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1630. }
  1631. {
  1632. $VAR1 = 'index.php?/api/v2/delete_suite/9';
  1633. $VAR2 = '200';
  1634. $VAR3 = 'OK';
  1635. $VAR4 = bless( {
  1636. 'connection' => 'close',
  1637. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1638. 'client-response-num' => 1,
  1639. 'date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1640. 'client-peer' => '192.168.122.217:80',
  1641. 'content-length' => '0',
  1642. '::std_case' => {
  1643. 'client-date' => 'Client-Date',
  1644. 'x-powered-by' => 'X-Powered-By',
  1645. 'client-response-num' => 'Client-Response-Num',
  1646. 'client-peer' => 'Client-Peer'
  1647. },
  1648. 'client-date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1649. 'content-type' => 'application/json; charset=utf-8',
  1650. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1651. }, 'HTTP::Headers' );
  1652. $VAR5 = '';
  1653. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1654. }
  1655. {
  1656. $VAR1 = 'index.php?/api/v2/delete_project/9';
  1657. $VAR2 = '200';
  1658. $VAR3 = 'OK';
  1659. $VAR4 = bless( {
  1660. 'connection' => 'close',
  1661. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1662. 'client-response-num' => 1,
  1663. 'date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1664. 'client-peer' => '192.168.122.217:80',
  1665. 'content-length' => '0',
  1666. '::std_case' => {
  1667. 'client-date' => 'Client-Date',
  1668. 'x-powered-by' => 'X-Powered-By',
  1669. 'client-response-num' => 'Client-Response-Num',
  1670. 'client-peer' => 'Client-Peer'
  1671. },
  1672. 'client-date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1673. 'content-type' => 'application/json; charset=utf-8',
  1674. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1675. }, 'HTTP::Headers' );
  1676. $VAR5 = '';
  1677. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1678. }
  1679. {
  1680. $VAR1 = 'index.php?/api/v2/get_configs/9';
  1681. $VAR2 = '200';
  1682. $VAR3 = 'OK';
  1683. $VAR4 = bless( {
  1684. 'connection' => 'close',
  1685. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1686. 'client-response-num' => 1,
  1687. 'date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1688. 'client-peer' => '192.168.122.217:80',
  1689. 'content-length' => '0',
  1690. '::std_case' => {
  1691. 'client-date' => 'Client-Date',
  1692. 'x-powered-by' => 'X-Powered-By',
  1693. 'client-response-num' => 'Client-Response-Num',
  1694. 'client-peer' => 'Client-Peer'
  1695. },
  1696. 'client-date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1697. 'content-type' => 'application/json; charset=utf-8',
  1698. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1699. }, 'HTTP::Headers' );
  1700. #Ripped from the headlines, lol -- see TR documentation
  1701. $VAR5 = '[
  1702. {
  1703. "configs": [
  1704. {
  1705. "group_id": 1,
  1706. "id": 1,
  1707. "name": "Chrome"
  1708. },
  1709. {
  1710. "group_id": 1,
  1711. "id": 2,
  1712. "name": "Firefox"
  1713. },
  1714. {
  1715. "group_id": 1,
  1716. "id": 3,
  1717. "name": "Internet Explorer"
  1718. }
  1719. ],
  1720. "id": 1,
  1721. "name": "Browsers",
  1722. "project_id": 1
  1723. },
  1724. {
  1725. "configs": [
  1726. {
  1727. "group_id": 2,
  1728. "id": 6,
  1729. "name": "Ubuntu 12"
  1730. },
  1731. {
  1732. "group_id": 2,
  1733. "id": 4,
  1734. "name": "Windows 7"
  1735. },
  1736. {
  1737. "group_id": 2,
  1738. "id": 5,
  1739. "name": "Windows 8"
  1740. }
  1741. ],
  1742. "id": 2,
  1743. "name": "Operating Systems",
  1744. "project_id": 1
  1745. },
  1746. {
  1747. "configs": [
  1748. {
  1749. "group_id": 3,
  1750. "id": 666,
  1751. "name": "noSuchConfig"
  1752. }
  1753. ],
  1754. "id": 3,
  1755. "name": "zippy",
  1756. "project_id": 1
  1757. }
  1758. ]';
  1759. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1760. }
  1761. {
  1762. $VAR1 = 'index.php?/api/v2/get_configs/10';
  1763. $VAR2 = '200';
  1764. $VAR3 = 'OK';
  1765. $VAR4 = bless( {
  1766. 'connection' => 'close',
  1767. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1768. 'client-response-num' => 1,
  1769. 'date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1770. 'client-peer' => '192.168.122.217:80',
  1771. 'content-length' => '0',
  1772. '::std_case' => {
  1773. 'client-date' => 'Client-Date',
  1774. 'x-powered-by' => 'X-Powered-By',
  1775. 'client-response-num' => 'Client-Response-Num',
  1776. 'client-peer' => 'Client-Peer'
  1777. },
  1778. 'client-date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1779. 'content-type' => 'application/json; charset=utf-8',
  1780. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1781. }, 'HTTP::Headers' );
  1782. $VAR5 = '[
  1783. {
  1784. "id": 1,
  1785. "name": "testPlatform1",
  1786. "project_id": 2,
  1787. "configs": [
  1788. {
  1789. "id": 4,
  1790. "name":"testConfig",
  1791. "group_id": 1
  1792. },
  1793. {
  1794. "id": 3,
  1795. "name": "eee",
  1796. "group_id": 1
  1797. },
  1798. {
  1799. "id": 1,
  1800. "name": "testPlatform1",
  1801. "group_id": 1
  1802. }
  1803. ]
  1804. },
  1805. {
  1806. "id": 2,
  1807. "name": "testPlatform2",
  1808. "project_id": 2,
  1809. "configs": [
  1810. {
  1811. "id": 2,
  1812. "name": "zippydoodah",
  1813. "group_id": 2
  1814. }
  1815. ]
  1816. }
  1817. ]';
  1818. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1819. }
  1820. {
  1821. $VAR1 = 'index.php?/api/v2/add_plan_entry/999';
  1822. $VAR2 = '200';
  1823. $VAR3 = 'OK';
  1824. $VAR4 = bless( {
  1825. 'connection' => 'close',
  1826. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1827. 'client-response-num' => 1,
  1828. 'date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1829. 'client-peer' => '192.168.122.217:80',
  1830. 'content-length' => '0',
  1831. '::std_case' => {
  1832. 'client-date' => 'Client-Date',
  1833. 'x-powered-by' => 'X-Powered-By',
  1834. 'client-response-num' => 'Client-Response-Num',
  1835. 'client-peer' => 'Client-Peer'
  1836. },
  1837. 'client-date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1838. 'content-type' => 'application/json; charset=utf-8',
  1839. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1840. }, 'HTTP::Headers' );
  1841. $VAR5 = '{"runs": [{"id":777}]}';
  1842. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1843. }
  1844. {
  1845. $VAR1 = 'index.php?/api/v2/add_plan_entry/23';
  1846. $VAR2 = '200';
  1847. $VAR3 = 'OK';
  1848. $VAR4 = bless( {
  1849. 'connection' => 'close',
  1850. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1851. 'client-response-num' => 1,
  1852. 'date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1853. 'client-peer' => '192.168.122.217:80',
  1854. 'content-length' => '0',
  1855. '::std_case' => {
  1856. 'client-date' => 'Client-Date',
  1857. 'x-powered-by' => 'X-Powered-By',
  1858. 'client-response-num' => 'Client-Response-Num',
  1859. 'client-peer' => 'Client-Peer'
  1860. },
  1861. 'client-date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1862. 'content-type' => 'application/json; charset=utf-8',
  1863. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1864. }, 'HTTP::Headers' );
  1865. $VAR5 = '{"runs": [{"id":666}]}';
  1866. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1867. }
  1868. {
  1869. $VAR1 = 'index.php?/api/v2/add_plan_entry/24';
  1870. $VAR2 = '200';
  1871. $VAR3 = 'OK';
  1872. $VAR4 = bless( {
  1873. 'connection' => 'close',
  1874. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1875. 'client-response-num' => 1,
  1876. 'date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1877. 'client-peer' => '192.168.122.217:80',
  1878. 'content-length' => '0',
  1879. '::std_case' => {
  1880. 'client-date' => 'Client-Date',
  1881. 'x-powered-by' => 'X-Powered-By',
  1882. 'client-response-num' => 'Client-Response-Num',
  1883. 'client-peer' => 'Client-Peer'
  1884. },
  1885. 'client-date' => 'Tue, 23 Dec 2014 20:02:12 GMT',
  1886. 'content-type' => 'application/json; charset=utf-8',
  1887. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1888. }, 'HTTP::Headers' );
  1889. $VAR5 = '{"runs": [{"id":8675309}]}';
  1890. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1891. }
  1892. {
  1893. $VAR1 = 'index.php?/api/v2/get_run/666';
  1894. $VAR2 = '200';
  1895. $VAR3 = 'OK';
  1896. $VAR4 = bless( {
  1897. 'connection' => 'close',
  1898. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1899. 'client-response-num' => 1,
  1900. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1901. 'client-peer' => '192.168.122.217:80',
  1902. 'content-length' => '654',
  1903. '::std_case' => {
  1904. 'client-date' => 'Client-Date',
  1905. 'x-powered-by' => 'X-Powered-By',
  1906. 'client-response-num' => 'Client-Response-Num',
  1907. 'client-peer' => 'Client-Peer'
  1908. },
  1909. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1910. 'content-type' => 'application/json; charset=utf-8',
  1911. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1912. }, 'HTTP::Headers' );
  1913. $VAR5 = '{"id":666,"suite_id":9,"name":"Dynamic Plan Run","assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":23,"created_on":1419364929,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/22"}';
  1914. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1915. }
  1916. {
  1917. $VAR1 = 'index.php?/api/v2/close_run/666';
  1918. $VAR2 = '200';
  1919. $VAR3 = 'OK';
  1920. $VAR4 = bless( {
  1921. 'connection' => 'close',
  1922. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1923. 'client-response-num' => 1,
  1924. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1925. 'client-peer' => '192.168.122.217:80',
  1926. 'content-length' => '654',
  1927. '::std_case' => {
  1928. 'client-date' => 'Client-Date',
  1929. 'x-powered-by' => 'X-Powered-By',
  1930. 'client-response-num' => 'Client-Response-Num',
  1931. 'client-peer' => 'Client-Peer'
  1932. },
  1933. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1934. 'content-type' => 'application/json; charset=utf-8',
  1935. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1936. }, 'HTTP::Headers' );
  1937. $VAR5 = '{"id":666,"suite_id":9,"name":"Dynamic Plan Run","assignedto_id":null,"include_all":true,"is_completed":true,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":23,"created_on":1419364929,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/22"}';
  1938. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1939. }
  1940. {
  1941. $VAR1 = 'index.php?/api/v2/close_run/3';
  1942. $VAR2 = '200';
  1943. $VAR3 = 'OK';
  1944. $VAR4 = bless( {
  1945. 'connection' => 'close',
  1946. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  1947. 'client-response-num' => 1,
  1948. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1949. 'client-peer' => '192.168.122.217:80',
  1950. 'content-length' => '654',
  1951. '::std_case' => {
  1952. 'client-date' => 'Client-Date',
  1953. 'x-powered-by' => 'X-Powered-By',
  1954. 'client-response-num' => 'Client-Response-Num',
  1955. 'client-peer' => 'Client-Peer'
  1956. },
  1957. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  1958. 'content-type' => 'application/json; charset=utf-8',
  1959. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1960. }, 'HTTP::Headers' );
  1961. $VAR5 = '{"id":666,"suite_id":9,"name":"Dynamic Plan Run","assignedto_id":null,"include_all":true,"is_completed":true,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":23,"created_on":1419364929,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/22"}';
  1962. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1963. }
  1964. {
  1965. $VAR1 = 'index.php?/api/v2/get_runs/9&offset=250&limit=250';
  1966. $VAR2 = '200';
  1967. $VAR3 = 'OK';
  1968. $VAR4 = bless( {
  1969. 'connection' => 'close',
  1970. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.7',
  1971. 'client-response-num' => 1,
  1972. 'date' => 'Wed, 25 Mar 2015 15:57:44 GMT',
  1973. 'client-peer' => '192.168.122.217:80',
  1974. 'content-length' => '1317',
  1975. '::std_case' => {
  1976. 'client-date' => 'Client-Date',
  1977. 'x-powered-by' => 'X-Powered-By',
  1978. 'client-response-num' => 'Client-Response-Num',
  1979. 'client-peer' => 'Client-Peer'
  1980. },
  1981. 'client-date' => 'Wed, 25 Mar 2015 15:57:50 GMT',
  1982. 'content-type' => 'application/json; charset=utf-8',
  1983. 'server' => 'Apache/2.4.7 (Ubuntu)'
  1984. }, 'HTTP::Headers' );
  1985. $VAR5 = '[{"id":1566,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299015,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1566"},{"id":1562,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":1,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299011,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1562"}]';
  1986. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  1987. }
  1988. {
  1989. $VAR1 = 'index.php?/api/v2/get_runs/9&offset=0&limit=250';
  1990. $VAR2 = '200';
  1991. $VAR3 = 'OK';
  1992. $VAR4 = bless( {
  1993. 'connection' => 'close',
  1994. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.7',
  1995. 'client-response-num' => 1,
  1996. 'date' => 'Wed, 25 Mar 2015 15:57:44 GMT',
  1997. 'client-peer' => '192.168.122.217:80',
  1998. 'content-length' => '1317',
  1999. '::std_case' => {
  2000. 'client-date' => 'Client-Date',
  2001. 'x-powered-by' => 'X-Powered-By',
  2002. 'client-response-num' => 'Client-Response-Num',
  2003. 'client-peer' => 'Client-Peer'
  2004. },
  2005. 'client-date' => 'Wed, 25 Mar 2015 15:57:50 GMT',
  2006. 'content-type' => 'application/json; charset=utf-8',
  2007. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2008. }, 'HTTP::Headers' );
  2009. $VAR5 = '[{"id":22,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299064,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1816"},{"id":1815,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299064,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1815"},{"id":1814,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299063,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1814"},{"id":1813,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299063,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1813"},{"id":1812,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299063,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1812"},{"id":1811,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299062,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1811"},{"id":1810,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299062,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1810"},{"id":1809,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299062,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1809"},{"id":1808,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299062,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1808"},{"id":1807,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299062,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1807"},{"id":1806,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299062,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1806"},{"id":1805,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299061,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1805"},{"id":1804,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299061,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1804"},{"id":1803,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299061,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1803"},{"id":1802,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299061,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1802"},{"id":1801,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299061,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1801"},{"id":1800,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299060,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1800"},{"id":1799,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299060,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1799"},{"id":1798,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299060,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1798"},{"id":1797,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299060,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1797"},{"id":1796,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299060,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1796"},{"id":1795,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299059,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1795"},{"id":1794,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299059,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1794"},{"id":1793,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299059,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1793"},{"id":1792,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299059,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1792"},{"id":1791,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299059,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1791"},{"id":1790,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299058,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1790"},{"id":1789,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299058,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1789"},{"id":1788,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299058,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1788"},{"id":1787,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299058,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1787"},{"id":1786,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299058,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1786"},{"id":1785,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299057,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1785"},{"id":1784,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299057,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1784"},{"id":1783,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299057,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1783"},{"id":1782,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299057,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1782"},{"id":1781,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299057,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1781"},{"id":1780,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299057,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1780"},{"id":1779,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299056,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1779"},{"id":1778,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299056,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1778"},{"id":1777,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299056,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1777"},{"id":1776,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299056,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1776"},{"id":1775,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299056,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1775"},{"id":1774,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299055,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1774"},{"id":1773,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299055,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1773"},{"id":1772,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299055,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1772"},{"id":1771,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299055,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1771"},{"id":1770,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299055,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1770"},{"id":1769,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299054,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1769"},{"id":1768,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299054,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1768"},{"id":1767,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299054,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1767"},{"id":1766,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299054,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1766"},{"id":1765,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299054,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1765"},{"id":1764,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299053,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1764"},{"id":1763,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299053,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1763"},{"id":1762,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299053,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1762"},{"id":1761,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299053,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1761"},{"id":1760,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299053,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1760"},{"id":1759,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299052,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1759"},{"id":1758,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299052,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1758"},{"id":1757,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299052,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1757"},{"id":1756,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299052,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1756"},{"id":1755,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299052,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1755"},{"id":1754,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299052,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1754"},{"id":1753,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299051,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1753"},{"id":1752,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299051,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1752"},{"id":1751,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299051,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1751"},{"id":1750,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299051,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1750"},{"id":1749,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299051,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1749"},{"id":1748,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299050,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1748"},{"id":1747,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299050,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1747"},{"id":1746,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299050,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1746"},{"id":1745,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299050,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1745"},{"id":1744,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299050,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1744"},{"id":1743,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299049,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1743"},{"id":1742,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299049,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1742"},{"id":1741,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299049,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1741"},{"id":1740,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299049,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1740"},{"id":1739,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299049,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1739"},{"id":1738,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299048,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1738"},{"id":1737,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299048,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1737"},{"id":1736,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299048,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1736"},{"id":1735,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299048,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1735"},{"id":1734,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299048,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1734"},{"id":1733,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299047,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1733"},{"id":1732,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299047,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1732"},{"id":1731,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299047,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1731"},{"id":1730,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299047,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1730"},{"id":1729,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299047,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1729"},{"id":1728,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299047,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1728"},{"id":1727,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299046,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1727"},{"id":1726,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299046,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1726"},{"id":1725,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299046,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1725"},{"id":1724,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299046,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1724"},{"id":1723,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299046,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1723"},{"id":1722,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299045,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1722"},{"id":1721,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299045,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1721"},{"id":1720,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299045,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1720"},{"id":1719,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299045,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1719"},{"id":1718,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299045,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1718"},{"id":1717,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299044,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1717"},{"id":1716,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299044,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1716"},{"id":1715,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299044,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1715"},{"id":1714,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299044,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1714"},{"id":1713,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299044,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1713"},{"id":1712,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299043,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1712"},{"id":1711,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299043,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1711"},{"id":1710,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299043,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1710"},{"id":1709,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299043,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1709"},{"id":1708,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299043,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1708"},{"id":1707,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299043,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1707"},{"id":1706,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299042,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1706"},{"id":1705,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299042,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1705"},{"id":1704,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299042,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1704"},{"id":1703,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299042,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1703"},{"id":1702,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299042,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1702"},{"id":1701,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299041,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1701"},{"id":1700,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299041,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1700"},{"id":1699,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299041,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1699"},{"id":1698,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299041,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1698"},{"id":1697,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299041,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1697"},{"id":1696,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299040,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1696"},{"id":1695,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299040,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1695"},{"id":1694,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299040,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1694"},{"id":1693,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299040,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1693"},{"id":1692,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299040,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1692"},{"id":1691,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299039,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1691"},{"id":1690,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299039,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1690"},{"id":1689,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299039,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1689"},{"id":1688,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299039,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1688"},{"id":1687,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299039,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1687"},{"id":1686,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299038,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1686"},{"id":1685,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299038,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1685"},{"id":1684,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299038,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1684"},{"id":1683,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299038,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1683"},{"id":1682,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299038,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1682"},{"id":1681,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299038,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1681"},{"id":1680,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299037,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1680"},{"id":1679,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299037,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1679"},{"id":1678,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299037,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1678"},{"id":1677,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299037,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1677"},{"id":1676,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299037,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1676"},{"id":1675,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299036,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1675"},{"id":1674,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299036,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1674"},{"id":1673,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299036,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1673"},{"id":1672,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299036,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1672"},{"id":1671,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299036,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1671"},{"id":1670,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299035,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1670"},{"id":1669,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299035,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1669"},{"id":1668,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299035,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1668"},{"id":1667,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299035,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1667"},{"id":1666,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299035,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1666"},{"id":1665,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299034,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1665"},{"id":1664,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299034,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1664"},{"id":1663,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299034,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1663"},{"id":1662,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299034,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1662"},{"id":1661,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299034,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1661"},{"id":1660,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299033,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1660"},{"id":1659,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299033,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1659"},{"id":1658,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299033,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1658"},{"id":1657,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299033,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1657"},{"id":1656,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299033,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1656"},{"id":1655,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299032,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1655"},{"id":1654,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299032,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1654"},{"id":1653,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299032,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1653"},{"id":1652,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299032,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1652"},{"id":1651,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299032,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1651"},{"id":1650,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299031,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1650"},{"id":1649,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299031,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1649"},{"id":1648,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299031,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1648"},{"id":1647,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299031,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1647"},{"id":1646,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299031,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1646"},{"id":1645,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299030,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1645"},{"id":1644,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299030,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1644"},{"id":1643,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299030,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1643"},{"id":1642,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299030,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1642"},{"id":1641,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299030,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1641"},{"id":1640,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299029,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1640"},{"id":1639,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299029,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1639"},{"id":1638,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299029,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1638"},{"id":1637,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299029,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1637"},{"id":1636,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299029,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1636"},{"id":1635,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299028,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1635"},{"id":1634,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299028,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1634"},{"id":1633,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299028,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1633"},{"id":1632,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299028,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1632"},{"id":1631,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299028,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1631"},{"id":1630,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299027,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1630"},{"id":1629,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299027,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1629"},{"id":1628,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299027,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1628"},{"id":1627,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299027,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1627"},{"id":1626,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299027,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1626"},{"id":1625,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299027,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1625"},{"id":1624,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299026,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1624"},{"id":1623,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299026,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1623"},{"id":1622,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299026,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1622"},{"id":1621,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299026,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1621"},{"id":1620,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299026,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1620"},{"id":1619,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299025,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1619"},{"id":1618,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299025,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1618"},{"id":1617,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299025,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1617"},{"id":1616,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299025,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1616"},{"id":1615,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299025,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1615"},{"id":1614,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299024,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1614"},{"id":1613,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299024,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1613"},{"id":1612,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299024,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1612"},{"id":1611,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299024,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1611"},{"id":1610,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299024,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1610"},{"id":1609,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299023,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1609"},{"id":1608,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299023,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1608"},{"id":1607,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299023,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1607"},{"id":1606,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299023,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1606"},{"id":1605,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299023,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1605"},{"id":1604,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299022,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1604"},{"id":1603,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299022,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1603"},{"id":1602,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299022,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1602"},{"id":1601,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299022,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1601"},{"id":1600,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299022,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1600"},{"id":1599,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299022,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1599"},{"id":1598,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299021,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1598"},{"id":1597,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299021,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1597"},{"id":1596,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299021,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1596"},{"id":1595,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299021,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1595"},{"id":1594,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299021,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1594"},{"id":1593,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299020,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1593"},{"id":1592,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299020,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1592"},{"id":1591,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299020,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1591"},{"id":1590,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299020,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1590"},{"id":1589,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299020,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1589"},{"id":1588,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299019,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1588"},{"id":1587,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299019,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1587"},{"id":1586,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299019,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1586"},{"id":1585,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299019,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1585"},{"id":1584,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299019,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1584"},{"id":1583,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299018,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1583"},{"id":1582,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299018,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1582"},{"id":1581,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299018,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1581"},{"id":1580,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299018,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1580"},{"id":1579,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299018,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1579"},{"id":1578,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299017,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1578"},{"id":1577,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299017,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1577"},{"id":1576,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299017,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1576"},{"id":1575,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299017,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1575"},{"id":1574,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299017,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1574"},{"id":1573,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299017,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1573"},{"id":1572,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299016,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1572"},{"id":1571,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299016,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1571"},{"id":1570,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299016,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1570"},{"id":1569,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299016,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1569"},{"id":1568,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299016,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1568"},{"id":1567,"suite_id":9,"name":"SEND T-1000 INFILTRATION UNITS BACK IN TIME","description":"ACQUIRE CLOTHES, BOOTS AND MOTORCYCLE","milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":9,"plan_id":null,"created_on":1427299015,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/1567"}]';
  2010. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2011. }
  2012. {
  2013. $VAR1 = 'index.php?/api/v2/get_plans/9&offset=250&limit=250';
  2014. $VAR2 = '200';
  2015. $VAR3 = 'OK';
  2016. $VAR4 = bless( {
  2017. 'connection' => 'close',
  2018. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.7',
  2019. 'client-response-num' => 1,
  2020. 'date' => 'Wed, 25 Mar 2015 17:53:29 GMT',
  2021. 'client-peer' => '192.168.122.217:80',
  2022. 'content-length' => '1082',
  2023. '::std_case' => {
  2024. 'client-date' => 'Client-Date',
  2025. 'x-powered-by' => 'X-Powered-By',
  2026. 'client-response-num' => 'Client-Response-Num',
  2027. 'client-peer' => 'Client-Peer'
  2028. },
  2029. 'client-date' => 'Wed, 25 Mar 2015 17:53:35 GMT',
  2030. 'content-type' => 'application/json; charset=utf-8',
  2031. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2032. }, 'HTTP::Headers' );
  2033. $VAR5 = '[{"id":2886,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305961,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2886"},{"id":2883,"name":"GosPlan","description":"Soviet 5-year agriculture plan to liquidate Kulaks","milestone_id":12,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":2,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305958,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2883"}]';
  2034. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2035. }
  2036. {
  2037. $VAR1 = 'index.php?/api/v2/get_plans/9&offset=0&limit=250';
  2038. $VAR2 = '200';
  2039. $VAR3 = 'OK';
  2040. $VAR4 = bless( {
  2041. 'connection' => 'close',
  2042. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.7',
  2043. 'client-response-num' => 1,
  2044. 'date' => 'Wed, 25 Mar 2015 17:53:28 GMT',
  2045. 'client-peer' => '192.168.122.217:80',
  2046. '::std_case' => {
  2047. 'client-date' => 'Client-Date',
  2048. 'x-powered-by' => 'X-Powered-By',
  2049. 'client-response-num' => 'Client-Response-Num',
  2050. 'client-transfer-encoding' => 'Client-Transfer-Encoding',
  2051. 'client-peer' => 'Client-Peer'
  2052. },
  2053. 'client-date' => 'Wed, 25 Mar 2015 17:53:34 GMT',
  2054. 'content-type' => 'application/json; charset=utf-8',
  2055. 'client-transfer-encoding' => [
  2056. 'chunked'
  2057. ],
  2058. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2059. }, 'HTTP::Headers' );
  2060. $VAR5 = '[{"id":23,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306008,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3136"},{"id":3135,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306008,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3135"},{"id":3134,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306008,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3134"},{"id":3133,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306008,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3133"},{"id":3132,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306008,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3132"},{"id":3131,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306007,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3131"},{"id":3130,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306007,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3130"},{"id":3129,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306007,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3129"},{"id":3128,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306007,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3128"},{"id":3127,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306007,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3127"},{"id":3126,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306007,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3126"},{"id":3125,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306006,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3125"},{"id":3124,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306006,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3124"},{"id":3123,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306006,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3123"},{"id":3122,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306006,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3122"},{"id":3121,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306006,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3121"},{"id":3120,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306005,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3120"},{"id":3119,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306005,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3119"},{"id":3118,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306005,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3118"},{"id":3117,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306005,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3117"},{"id":3116,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306005,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3116"},{"id":3115,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306004,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3115"},{"id":3114,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306004,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3114"},{"id":3113,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306004,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3113"},{"id":3112,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306004,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3112"},{"id":3111,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306004,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3111"},{"id":3110,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306003,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3110"},{"id":3109,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306003,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3109"},{"id":3108,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306003,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3108"},{"id":3107,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306003,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3107"},{"id":3106,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306003,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3106"},{"id":3105,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306003,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3105"},{"id":3104,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306002,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3104"},{"id":3103,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306002,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3103"},{"id":3102,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306002,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3102"},{"id":3101,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306002,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3101"},{"id":3100,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306002,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3100"},{"id":3099,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306001,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3099"},{"id":3098,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306001,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3098"},{"id":3097,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306001,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3097"},{"id":3096,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306001,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3096"},{"id":3095,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306001,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3095"},{"id":3094,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306000,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3094"},{"id":3093,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306000,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3093"},{"id":3092,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306000,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3092"},{"id":3091,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306000,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3091"},{"id":3090,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427306000,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3090"},{"id":3089,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305999,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3089"},{"id":3088,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305999,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3088"},{"id":3087,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305999,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3087"},{"id":3086,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305999,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3086"},{"id":3085,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305999,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3085"},{"id":3084,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305998,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3084"},{"id":3083,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305998,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3083"},{"id":3082,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305998,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3082"},{"id":3081,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305998,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3081"},{"id":3080,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305998,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3080"},{"id":3079,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305998,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3079"},{"id":3078,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305997,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3078"},{"id":3077,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305997,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3077"},{"id":3076,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305997,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3076"},{"id":3075,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305997,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3075"},{"id":3074,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305997,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3074"},{"id":3073,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305996,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3073"},{"id":3072,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305996,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3072"},{"id":3071,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305996,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3071"},{"id":3070,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305996,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3070"},{"id":3069,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305996,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3069"},{"id":3068,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305995,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3068"},{"id":3067,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305995,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3067"},{"id":3066,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305995,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3066"},{"id":3065,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305995,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3065"},{"id":3064,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305995,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3064"},{"id":3063,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305994,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3063"},{"id":3062,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305994,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3062"},{"id":3061,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305994,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3061"},{"id":3060,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305994,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3060"},{"id":3059,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305994,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3059"},{"id":3058,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305993,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3058"},{"id":3057,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305993,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3057"},{"id":3056,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305993,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3056"},{"id":3055,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305993,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3055"},{"id":3054,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305993,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3054"},{"id":3053,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305993,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3053"},{"id":3052,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305992,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3052"},{"id":3051,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305992,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3051"},{"id":3050,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305992,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3050"},{"id":3049,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305992,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3049"},{"id":3048,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305992,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3048"},{"id":3047,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305991,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3047"},{"id":3046,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305991,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3046"},{"id":3045,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305991,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3045"},{"id":3044,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305991,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3044"},{"id":3043,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305991,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3043"},{"id":3042,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305990,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3042"},{"id":3041,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305990,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3041"},{"id":3040,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305990,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3040"},{"id":3039,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305990,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3039"},{"id":3038,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305990,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3038"},{"id":3037,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305989,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3037"},{"id":3036,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305989,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3036"},{"id":3035,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305989,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3035"},{"id":3034,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305989,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3034"},{"id":3033,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305989,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3033"},{"id":3032,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305989,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3032"},{"id":3031,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305988,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3031"},{"id":3030,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305988,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3030"},{"id":3029,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305988,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3029"},{"id":3028,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305988,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3028"},{"id":3027,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305988,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3027"},{"id":3026,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305987,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3026"},{"id":3025,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305987,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3025"},{"id":3024,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305987,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3024"},{"id":3023,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305987,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3023"},{"id":3022,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305987,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3022"},{"id":3021,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305986,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3021"},{"id":3020,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305986,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3020"},{"id":3019,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305986,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3019"},{"id":3018,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305986,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3018"},{"id":3017,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305986,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3017"},{"id":3016,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305985,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3016"},{"id":3015,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305985,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3015"},{"id":3014,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305985,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3014"},{"id":3013,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305985,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3013"},{"id":3012,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305985,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3012"},{"id":3011,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305985,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3011"},{"id":3010,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305984,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3010"},{"id":3009,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305984,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3009"},{"id":3008,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305984,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3008"},{"id":3007,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305984,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3007"},{"id":3006,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305984,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3006"},{"id":3005,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305983,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3005"},{"id":3004,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305983,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3004"},{"id":3003,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305983,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3003"},{"id":3002,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305983,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3002"},{"id":3001,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305983,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3001"},{"id":3000,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305982,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/3000"},{"id":2999,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305982,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2999"},{"id":2998,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305982,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2998"},{"id":2997,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305982,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2997"},{"id":2996,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305982,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2996"},{"id":2995,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305981,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2995"},{"id":2994,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305981,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2994"},{"id":2993,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305981,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2993"},{"id":2992,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305981,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2992"},{"id":2991,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305981,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2991"},{"id":2990,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305981,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2990"},{"id":2989,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305980,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2989"},{"id":2988,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305980,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2988"},{"id":2987,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305980,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2987"},{"id":2986,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305980,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2986"},{"id":2985,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305980,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2985"},{"id":2984,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305979,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2984"},{"id":2983,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305979,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2983"},{"id":2982,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305979,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2982"},{"id":2981,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305979,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2981"},{"id":2980,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305979,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2980"},{"id":2979,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305978,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2979"},{"id":2978,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305978,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2978"},{"id":2977,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305978,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2977"},{"id":2976,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305978,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2976"},{"id":2975,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305978,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2975"},{"id":2974,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305977,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2974"},{"id":2973,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305977,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2973"},{"id":2972,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305977,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2972"},{"id":2971,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305977,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2971"},{"id":2970,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305977,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2970"},{"id":2969,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305976,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2969"},{"id":2968,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305976,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2968"},{"id":2967,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305976,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2967"},{"id":2966,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305976,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2966"},{"id":2965,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305976,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2965"},{"id":2964,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305976,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2964"},{"id":2963,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305975,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2963"},{"id":2962,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305975,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2962"},{"id":2961,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305975,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2961"},{"id":2960,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305975,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2960"},{"id":2959,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305975,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2959"},{"id":2958,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305974,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2958"},{"id":2957,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305974,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2957"},{"id":2956,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305974,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2956"},{"id":2955,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305974,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2955"},{"id":2954,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305974,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2954"},{"id":2953,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305973,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2953"},{"id":2952,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305973,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2952"},{"id":2951,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305973,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2951"},{"id":2950,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305973,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2950"},{"id":2949,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305973,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2949"},{"id":2948,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305972,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2948"},{"id":2947,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305972,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2947"},{"id":2946,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305972,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2946"},{"id":2945,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305972,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2945"},{"id":2944,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305972,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2944"},{"id":2943,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305972,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2943"},{"id":2942,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305971,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2942"},{"id":2941,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305971,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2941"},{"id":2940,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305971,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2940"},{"id":2939,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305971,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2939"},{"id":2938,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305971,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2938"},{"id":2937,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305970,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2937"},{"id":2936,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305970,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2936"},{"id":2935,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305970,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2935"},{"id":2934,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305970,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2934"},{"id":2933,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305970,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2933"},{"id":2932,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305969,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2932"},{"id":2931,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305969,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2931"},{"id":2930,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305969,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2930"},{"id":2929,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305969,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2929"},{"id":2928,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305969,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2928"},{"id":2927,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305968,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2927"},{"id":2926,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305968,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2926"},{"id":2925,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305968,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2925"},{"id":2924,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305968,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2924"},{"id":2923,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305968,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2923"},{"id":2922,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305967,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2922"},{"id":2921,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305967,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2921"},{"id":2920,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305967,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2920"},{"id":2919,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305967,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2919"},{"id":2918,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305967,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2918"},{"id":2917,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305967,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2917"},{"id":2916,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305966,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2916"},{"id":2915,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305966,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2915"},{"id":2914,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305966,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2914"},{"id":2913,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305966,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2913"},{"id":2912,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305966,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2912"},{"id":2911,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305965,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2911"},{"id":2910,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305965,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2910"},{"id":2909,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305965,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2909"},{"id":2908,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305965,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2908"},{"id":2907,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305965,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2907"},{"id":2906,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305964,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2906"},{"id":2905,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305964,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2905"},{"id":2904,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305964,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2904"},{"id":2903,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305964,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2903"},{"id":2902,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305964,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2902"},{"id":2901,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305964,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2901"},{"id":2900,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305963,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2900"},{"id":2899,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305963,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2899"},{"id":2898,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305963,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2898"},{"id":2897,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305963,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2897"},{"id":2896,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305963,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2896"},{"id":2895,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305962,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2895"},{"id":2894,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305962,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2894"},{"id":2893,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305962,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2893"},{"id":2892,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305962,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2892"},{"id":2891,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305962,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2891"},{"id":2890,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305961,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2890"},{"id":2889,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305961,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2889"},{"id":2888,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305961,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2888"},{"id":2887,"name":"GosPlan","description":"PETE & RE-PIOTR","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":0,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":14,"created_on":1427305961,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/plans\\/view\\/2887"}]';
  2061. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2062. }
  2063. #MockOnly.test bits
  2064. {
  2065. $VAR1 = 'index.php?/api/v2/get_plan/1094';
  2066. $VAR2 = '200';
  2067. $VAR3 = 'OK';
  2068. $VAR4 = bless( {
  2069. 'connection' => 'close',
  2070. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.7',
  2071. 'client-response-num' => 1,
  2072. 'date' => 'Tue, 21 Apr 2015 14:53:38 GMT',
  2073. 'client-peer' => '192.168.122.217:80',
  2074. 'content-length' => '3222',
  2075. '::std_case' => {
  2076. 'client-date' => 'Client-Date',
  2077. 'x-powered-by' => 'X-Powered-By',
  2078. 'client-response-num' => 'Client-Response-Num',
  2079. 'client-peer' => 'Client-Peer'
  2080. },
  2081. 'client-date' => 'Tue, 21 Apr 2015 14:53:39 GMT',
  2082. 'content-type' => 'application/json; charset=utf-8',
  2083. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2084. }, 'HTTP::Headers' );
  2085. $VAR5 = '{"id":1094,"name":"HooHaaPlan","description":"zippy","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":4,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"created_on":1429586939,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/1094","entries":[{"id":"c6648f8e-815f-4763-a4bf-0d6dcb01855e","suite_id":4,"name":"OtherOtherSuite","runs":[{"id":1095,"suite_id":4,"name":"OtherOtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":false,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":1,"entry_id":"c6648f8e-815f-4763-a4bf-0d6dcb01855e","config":"eee","config_ids":[3],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1095"},{"id":1096,"suite_id":4,"name":"OtherOtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":1,"entry_id":"c6648f8e-815f-4763-a4bf-0d6dcb01855e","config":"testPlatform1","config_ids":[1],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1096"}]},{"id":"02b54a4c-be7e-4b1e-814c-6bbe0389edd0","suite_id":3,"name":"OtherSuite","runs":[{"id":1097,"suite_id":3,"name":"OtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":false,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":2,"entry_id":"02b54a4c-be7e-4b1e-814c-6bbe0389edd0","config":"eee","config_ids":[3],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1097"},{"id":1098,"suite_id":3,"name":"OtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":2,"entry_id":"02b54a4c-be7e-4b1e-814c-6bbe0389edd0","config":"testPlatform1","config_ids":[1],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1098"}]}]}';
  2086. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2087. }
  2088. {
  2089. $VAR1 = 'index.php?/api/v2/get_plan/999';
  2090. $VAR2 = '200';
  2091. $VAR3 = 'OK';
  2092. $VAR4 = bless( {
  2093. 'connection' => 'close',
  2094. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.7',
  2095. 'client-response-num' => 1,
  2096. 'date' => 'Tue, 21 Apr 2015 14:53:38 GMT',
  2097. 'client-peer' => '192.168.122.217:80',
  2098. 'content-length' => '3222',
  2099. '::std_case' => {
  2100. 'client-date' => 'Client-Date',
  2101. 'x-powered-by' => 'X-Powered-By',
  2102. 'client-response-num' => 'Client-Response-Num',
  2103. 'client-peer' => 'Client-Peer'
  2104. },
  2105. 'client-date' => 'Tue, 21 Apr 2015 14:53:39 GMT',
  2106. 'content-type' => 'application/json; charset=utf-8',
  2107. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2108. }, 'HTTP::Headers' );
  2109. $VAR5 = '{"id":1066,"name":"BogoPlan","description":"zippy","milestone_id":null,"assignedto_id":null,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":4,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"created_on":1429586939,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/1094","entries":[{"id":"c6648f8e-815f-4763-a4bf-0d6dcb01855e","suite_id":4,"name":"OtherOtherSuite","runs":[{"id":1095,"suite_id":4,"name":"OtherOtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":false,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":1,"entry_id":"c6648f8e-815f-4763-a4bf-0d6dcb01855e","config":"eee","config_ids":[3],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1095"},{"id":1096,"suite_id":4,"name":"OtherOtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":1,"entry_id":"c6648f8e-815f-4763-a4bf-0d6dcb01855e","config":"testPlatform1","config_ids":[1],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1096"}]},{"id":"02b54a4c-be7e-4b1e-814c-6bbe0389edd0","suite_id":3,"name":"OtherSuite","runs":[{"id":1097,"suite_id":3,"name":"OtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":false,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":2,"entry_id":"02b54a4c-be7e-4b1e-814c-6bbe0389edd0","config":"eee","config_ids":[3],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1097"},{"id":1098,"suite_id":3,"name":"OtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":2,"entry_id":"02b54a4c-be7e-4b1e-814c-6bbe0389edd0","config":"testPlatform1","config_ids":[1],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1098"}]}]}';
  2110. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2111. }
  2112. {
  2113. $VAR1 = 'index.php?/api/v2/get_plan/9999';
  2114. $VAR2 = '200';
  2115. $VAR3 = 'OK';
  2116. $VAR4 = bless( {
  2117. 'connection' => 'close',
  2118. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.7',
  2119. 'client-response-num' => 1,
  2120. 'date' => 'Tue, 21 Apr 2015 14:53:38 GMT',
  2121. 'client-peer' => '192.168.122.217:80',
  2122. 'content-length' => '3222',
  2123. '::std_case' => {
  2124. 'client-date' => 'Client-Date',
  2125. 'x-powered-by' => 'X-Powered-By',
  2126. 'client-response-num' => 'Client-Response-Num',
  2127. 'client-peer' => 'Client-Peer'
  2128. },
  2129. 'client-date' => 'Tue, 21 Apr 2015 14:53:39 GMT',
  2130. 'content-type' => 'application/json; charset=utf-8',
  2131. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2132. }, 'HTTP::Headers' );
  2133. $VAR5 = '{"id":1066,"name":"ClosedPlan","description":"zippy","milestone_id":null,"assignedto_id":null,"is_completed":true,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":4,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"created_on":1429586939,"created_by":1,"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/plans\\/view\\/1094","entries":[{"id":"c6648f8e-815f-4763-a4bf-0d6dcb01855e","suite_id":4,"name":"OtherOtherSuite","runs":[{"id":1095,"suite_id":4,"name":"OtherOtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":false,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":1,"entry_id":"c6648f8e-815f-4763-a4bf-0d6dcb01855e","config":"eee","config_ids":[3],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1095"},{"id":1096,"suite_id":4,"name":"OtherOtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":1,"entry_id":"c6648f8e-815f-4763-a4bf-0d6dcb01855e","config":"testPlatform1","config_ids":[1],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1096"}]},{"id":"02b54a4c-be7e-4b1e-814c-6bbe0389edd0","suite_id":3,"name":"OtherSuite","runs":[{"id":1097,"suite_id":3,"name":"OtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":false,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":2,"entry_id":"02b54a4c-be7e-4b1e-814c-6bbe0389edd0","config":"eee","config_ids":[3],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1097"},{"id":1098,"suite_id":3,"name":"OtherSuite","description":null,"milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"passed_count":0,"blocked_count":0,"untested_count":1,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":2,"plan_id":1094,"entry_index":2,"entry_id":"02b54a4c-be7e-4b1e-814c-6bbe0389edd0","config":"testPlatform1","config_ids":[1],"url":"http:\\/\\/testrail.local\\/\\/index.php?\\/runs\\/view\\/1098"}]}]}';
  2134. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2135. }
  2136. {
  2137. $VAR1 = 'index.php?/api/v2/add_results/22';
  2138. $VAR2 = '200';
  2139. $VAR3 = 'OK';
  2140. $VAR4 = bless( {
  2141. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2142. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  2143. 'content-type' => 'application/json; charset=utf-8',
  2144. 'client-response-num' => 1,
  2145. 'client-date' => 'Sat, 11 Jul 2015 20:09:43 GMT',
  2146. 'date' => 'Sat, 11 Jul 2015 20:09:42 GMT',
  2147. '::std_case' => {
  2148. 'x-powered-by' => 'X-Powered-By',
  2149. 'client-response-num' => 'Client-Response-Num',
  2150. 'client-date' => 'Client-Date',
  2151. 'client-peer' => 'Client-Peer'
  2152. },
  2153. 'client-peer' => '192.168.122.217:80',
  2154. 'content-length' => '179',
  2155. 'connection' => 'close'
  2156. }, 'HTTP::Headers' );
  2157. $VAR5 = '[{"id":515,"test_id":286,"status_id":1,"created_by":1,"created_on":1436645382,"assignedto_id":null,"comment":"REAPER FORCES INBOUND","version":null,"elapsed":null,"defects":null}]';
  2158. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2159. }
  2160. {
  2161. $VAR1 = 'index.php?/api/v2/get_case_types';
  2162. $VAR2 = '200';
  2163. $VAR3 = 'OK';
  2164. $VAR4 = bless( {
  2165. 'connection' => 'close',
  2166. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2167. 'client-response-num' => 1,
  2168. 'date' => 'Thu, 16 Jul 2015 20:59:52 GMT',
  2169. 'client-peer' => '192.168.122.217:80',
  2170. 'content-length' => '285',
  2171. '::std_case' => {
  2172. 'client-date' => 'Client-Date',
  2173. 'x-powered-by' => 'X-Powered-By',
  2174. 'client-response-num' => 'Client-Response-Num',
  2175. 'client-peer' => 'Client-Peer'
  2176. },
  2177. 'client-date' => 'Thu, 16 Jul 2015 20:59:52 GMT',
  2178. 'content-type' => 'application/json; charset=utf-8',
  2179. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2180. }, 'HTTP::Headers' );
  2181. $VAR5 = '[{"id":1,"name":"Automated","is_default":false},{"id":2,"name":"Functionality","is_default":false},{"id":6,"name":"Other","is_default":true},{"id":3,"name":"Performance","is_default":false},{"id":4,"name":"Regression","is_default":false},{"id":5,"name":"Usability","is_default":false}]';
  2182. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2183. }
  2184. #Lock Mocks
  2185. {
  2186. $VAR1 = 'index.php?/api/v2/add_result/590';
  2187. $VAR2 = '200';
  2188. $VAR3 = 'OK';
  2189. $VAR4 = bless( {
  2190. 'connection' => 'close',
  2191. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2192. 'client-response-num' => 1,
  2193. 'date' => 'Thu, 16 Jul 2015 23:05:55 GMT',
  2194. 'client-peer' => '192.168.122.217:80',
  2195. 'content-length' => '353',
  2196. '::std_case' => {
  2197. 'client-date' => 'Client-Date',
  2198. 'x-powered-by' => 'X-Powered-By',
  2199. 'client-response-num' => 'Client-Response-Num',
  2200. 'client-peer' => 'Client-Peer'
  2201. },
  2202. 'client-date' => 'Thu, 16 Jul 2015 23:05:54 GMT',
  2203. 'content-type' => 'application/json; charset=utf-8',
  2204. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2205. }, 'HTTP::Headers' );
  2206. $VAR5 = '{"id":635,"test_id":590,"status_id":9,"created_by":1,"created_on":1437087955,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}';
  2207. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2208. }
  2209. {
  2210. $VAR1 = 'index.php?/api/v2/get_results/590&limit=100';
  2211. $VAR2 = '200';
  2212. $VAR3 = 'OK';
  2213. $VAR4 = bless( {
  2214. 'connection' => 'close',
  2215. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2216. 'client-response-num' => 1,
  2217. 'date' => 'Thu, 16 Jul 2015 23:05:55 GMT',
  2218. 'client-peer' => '192.168.122.217:80',
  2219. 'content-length' => '895',
  2220. '::std_case' => {
  2221. 'client-date' => 'Client-Date',
  2222. 'x-powered-by' => 'X-Powered-By',
  2223. 'client-response-num' => 'Client-Response-Num',
  2224. 'client-peer' => 'Client-Peer'
  2225. },
  2226. 'client-date' => 'Thu, 16 Jul 2015 23:05:55 GMT',
  2227. 'content-type' => 'application/json; charset=utf-8',
  2228. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2229. }, 'HTTP::Headers' );
  2230. $VAR5 = '[{"id":635,"test_id":590,"status_id":9,"created_by":1,"created_on":1437087955,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":631,"test_id":590,"status_id":4,"created_by":1,"created_on":1437087814,"assignedto_id":null,"comment":null,"version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":622,"test_id":590,"status_id":9,"created_by":1,"created_on":1437087447,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}]';
  2231. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2232. }
  2233. {
  2234. $VAR1 = 'index.php?/api/v2/add_result/588';
  2235. $VAR2 = '200';
  2236. $VAR3 = 'OK';
  2237. $VAR4 = bless( {
  2238. 'connection' => 'close',
  2239. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2240. 'client-response-num' => 1,
  2241. 'date' => 'Thu, 16 Jul 2015 23:05:57 GMT',
  2242. 'client-peer' => '192.168.122.217:80',
  2243. 'content-length' => '353',
  2244. '::std_case' => {
  2245. 'client-date' => 'Client-Date',
  2246. 'x-powered-by' => 'X-Powered-By',
  2247. 'client-response-num' => 'Client-Response-Num',
  2248. 'client-peer' => 'Client-Peer'
  2249. },
  2250. 'client-date' => 'Thu, 16 Jul 2015 23:05:56 GMT',
  2251. 'content-type' => 'application/json; charset=utf-8',
  2252. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2253. }, 'HTTP::Headers' );
  2254. $VAR5 = '{"id":637,"test_id":588,"status_id":9,"created_by":1,"created_on":1437087957,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}';
  2255. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2256. }
  2257. {
  2258. $VAR1 = 'index.php?/api/v2/get_results/588&limit=100';
  2259. $VAR2 = '200';
  2260. $VAR3 = 'OK';
  2261. $VAR4 = bless( {
  2262. 'connection' => 'close',
  2263. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2264. 'client-response-num' => 1,
  2265. 'date' => 'Thu, 16 Jul 2015 23:05:57 GMT',
  2266. 'client-peer' => '192.168.122.217:80',
  2267. 'content-length' => '895',
  2268. '::std_case' => {
  2269. 'client-date' => 'Client-Date',
  2270. 'x-powered-by' => 'X-Powered-By',
  2271. 'client-response-num' => 'Client-Response-Num',
  2272. 'client-peer' => 'Client-Peer'
  2273. },
  2274. 'client-date' => 'Thu, 16 Jul 2015 23:05:57 GMT',
  2275. 'content-type' => 'application/json; charset=utf-8',
  2276. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2277. }, 'HTTP::Headers' );
  2278. $VAR5 = '[{"id":637,"test_id":588,"status_id":9,"created_by":1,"created_on":1437087957,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":630,"test_id":588,"status_id":4,"created_by":1,"created_on":1437087814,"assignedto_id":null,"comment":null,"version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":624,"test_id":588,"status_id":9,"created_by":1,"created_on":1437087449,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}]';
  2279. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2280. }
  2281. {
  2282. $VAR1 = 'index.php?/api/v2/add_result/590';
  2283. $VAR2 = '200';
  2284. $VAR3 = 'OK';
  2285. $VAR4 = bless( {
  2286. 'connection' => 'close',
  2287. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2288. 'client-response-num' => 1,
  2289. 'date' => 'Thu, 16 Jul 2015 23:05:55 GMT',
  2290. 'client-peer' => '192.168.122.217:80',
  2291. 'content-length' => '353',
  2292. '::std_case' => {
  2293. 'client-date' => 'Client-Date',
  2294. 'x-powered-by' => 'X-Powered-By',
  2295. 'client-response-num' => 'Client-Response-Num',
  2296. 'client-peer' => 'Client-Peer'
  2297. },
  2298. 'client-date' => 'Thu, 16 Jul 2015 23:05:54 GMT',
  2299. 'content-type' => 'application/json; charset=utf-8',
  2300. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2301. }, 'HTTP::Headers' );
  2302. $VAR5 = '{"id":635,"test_id":590,"status_id":9,"created_by":1,"created_on":1437087955,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}';
  2303. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2304. }
  2305. {
  2306. $VAR1 = 'index.php?/api/v2/get_results/590&limit=100';
  2307. $VAR2 = '200';
  2308. $VAR3 = 'OK';
  2309. $VAR4 = bless( {
  2310. 'connection' => 'close',
  2311. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2312. 'client-response-num' => 1,
  2313. 'date' => 'Thu, 16 Jul 2015 23:05:55 GMT',
  2314. 'client-peer' => '192.168.122.217:80',
  2315. 'content-length' => '895',
  2316. '::std_case' => {
  2317. 'client-date' => 'Client-Date',
  2318. 'x-powered-by' => 'X-Powered-By',
  2319. 'client-response-num' => 'Client-Response-Num',
  2320. 'client-peer' => 'Client-Peer'
  2321. },
  2322. 'client-date' => 'Thu, 16 Jul 2015 23:05:55 GMT',
  2323. 'content-type' => 'application/json; charset=utf-8',
  2324. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2325. }, 'HTTP::Headers' );
  2326. $VAR5 = '[{"id":635,"test_id":590,"status_id":9,"created_by":1,"created_on":1437087955,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":631,"test_id":590,"status_id":4,"created_by":1,"created_on":1437087814,"assignedto_id":null,"comment":null,"version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":622,"test_id":590,"status_id":9,"created_by":1,"created_on":1437087447,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}]';
  2327. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2328. }
  2329. {
  2330. $VAR1 = 'index.php?/api/v2/add_result/591';
  2331. $VAR2 = '200';
  2332. $VAR3 = 'OK';
  2333. $VAR4 = bless( {
  2334. 'connection' => 'close',
  2335. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2336. 'client-response-num' => 1,
  2337. 'date' => 'Thu, 16 Jul 2015 23:05:59 GMT',
  2338. 'client-peer' => '192.168.122.217:80',
  2339. 'content-length' => '353',
  2340. '::std_case' => {
  2341. 'client-date' => 'Client-Date',
  2342. 'x-powered-by' => 'X-Powered-By',
  2343. 'client-response-num' => 'Client-Response-Num',
  2344. 'client-peer' => 'Client-Peer'
  2345. },
  2346. 'client-date' => 'Thu, 16 Jul 2015 23:05:59 GMT',
  2347. 'content-type' => 'application/json; charset=utf-8',
  2348. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2349. }, 'HTTP::Headers' );
  2350. $VAR5 = '{"id":639,"test_id":591,"status_id":9,"created_by":1,"created_on":1437087959,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}';
  2351. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2352. }
  2353. {
  2354. $VAR1 = 'index.php?/api/v2/get_results/591&limit=100';
  2355. $VAR2 = '200';
  2356. $VAR3 = 'OK';
  2357. $VAR4 = bless( {
  2358. 'connection' => 'close',
  2359. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2360. 'client-response-num' => 1,
  2361. 'date' => 'Thu, 16 Jul 2015 23:05:59 GMT',
  2362. 'client-peer' => '192.168.122.217:80',
  2363. 'content-length' => '895',
  2364. '::std_case' => {
  2365. 'client-date' => 'Client-Date',
  2366. 'x-powered-by' => 'X-Powered-By',
  2367. 'client-response-num' => 'Client-Response-Num',
  2368. 'client-peer' => 'Client-Peer'
  2369. },
  2370. 'client-date' => 'Thu, 16 Jul 2015 23:05:59 GMT',
  2371. 'content-type' => 'application/json; charset=utf-8',
  2372. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2373. }, 'HTTP::Headers' );
  2374. $VAR5 = '[{"id":639,"test_id":591,"status_id":9,"created_by":1,"created_on":1437087959,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":632,"test_id":591,"status_id":4,"created_by":1,"created_on":1437087814,"assignedto_id":null,"comment":null,"version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":626,"test_id":591,"status_id":9,"created_by":1,"created_on":1437087452,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}]';
  2375. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2376. }
  2377. {
  2378. $VAR1 = 'index.php?/api/v2/add_result/593';
  2379. $VAR2 = '200';
  2380. $VAR3 = 'OK';
  2381. $VAR4 = bless( {
  2382. 'connection' => 'close',
  2383. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2384. 'client-response-num' => 1,
  2385. 'date' => 'Thu, 16 Jul 2015 23:06:00 GMT',
  2386. 'client-peer' => '192.168.122.217:80',
  2387. 'content-length' => '353',
  2388. '::std_case' => {
  2389. 'client-date' => 'Client-Date',
  2390. 'x-powered-by' => 'X-Powered-By',
  2391. 'client-response-num' => 'Client-Response-Num',
  2392. 'client-peer' => 'Client-Peer'
  2393. },
  2394. 'client-date' => 'Thu, 16 Jul 2015 23:06:00 GMT',
  2395. 'content-type' => 'application/json; charset=utf-8',
  2396. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2397. }, 'HTTP::Headers' );
  2398. $VAR5 = '{"id":640,"test_id":593,"status_id":9,"created_by":1,"created_on":1437087960,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}';
  2399. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2400. }
  2401. {
  2402. $VAR1 = 'index.php?/api/v2/get_results/593&limit=100';
  2403. $VAR2 = '200';
  2404. $VAR3 = 'OK';
  2405. $VAR4 = bless( {
  2406. 'connection' => 'close',
  2407. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2408. 'client-response-num' => 1,
  2409. 'date' => 'Thu, 16 Jul 2015 23:06:00 GMT',
  2410. 'client-peer' => '192.168.122.217:80',
  2411. 'content-length' => '895',
  2412. '::std_case' => {
  2413. 'client-date' => 'Client-Date',
  2414. 'x-powered-by' => 'X-Powered-By',
  2415. 'client-response-num' => 'Client-Response-Num',
  2416. 'client-peer' => 'Client-Peer'
  2417. },
  2418. 'client-date' => 'Thu, 16 Jul 2015 23:06:00 GMT',
  2419. 'content-type' => 'application/json; charset=utf-8',
  2420. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2421. }, 'HTTP::Headers' );
  2422. $VAR5 = '[{"id":640,"test_id":593,"status_id":9,"created_by":1,"created_on":1437087960,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":634,"test_id":593,"status_id":4,"created_by":1,"created_on":1437087814,"assignedto_id":null,"comment":null,"version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":627,"test_id":593,"status_id":9,"created_by":1,"created_on":1437087453,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}]';
  2423. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2424. }
  2425. {
  2426. $VAR1 = 'index.php?/api/v2/add_result/592';
  2427. $VAR2 = '200';
  2428. $VAR3 = 'OK';
  2429. $VAR4 = bless( {
  2430. 'connection' => 'close',
  2431. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2432. 'client-response-num' => 1,
  2433. 'date' => 'Thu, 16 Jul 2015 23:06:02 GMT',
  2434. 'client-peer' => '192.168.122.217:80',
  2435. 'content-length' => '353',
  2436. '::std_case' => {
  2437. 'client-date' => 'Client-Date',
  2438. 'x-powered-by' => 'X-Powered-By',
  2439. 'client-response-num' => 'Client-Response-Num',
  2440. 'client-peer' => 'Client-Peer'
  2441. },
  2442. 'client-date' => 'Thu, 16 Jul 2015 23:06:01 GMT',
  2443. 'content-type' => 'application/json; charset=utf-8',
  2444. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2445. }, 'HTTP::Headers' );
  2446. $VAR5 = '{"id":641,"test_id":592,"status_id":9,"created_by":1,"created_on":1437087962,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}';
  2447. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2448. }
  2449. {
  2450. $VAR1 = 'index.php?/api/v2/get_results/592&limit=100';
  2451. $VAR2 = '200';
  2452. $VAR3 = 'OK';
  2453. $VAR4 = bless( {
  2454. 'connection' => 'close',
  2455. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  2456. 'client-response-num' => 1,
  2457. 'date' => 'Thu, 16 Jul 2015 23:06:02 GMT',
  2458. 'client-peer' => '192.168.122.217:80',
  2459. 'content-length' => '895',
  2460. '::std_case' => {
  2461. 'client-date' => 'Client-Date',
  2462. 'x-powered-by' => 'X-Powered-By',
  2463. 'client-response-num' => 'Client-Response-Num',
  2464. 'client-peer' => 'Client-Peer'
  2465. },
  2466. 'client-date' => 'Thu, 16 Jul 2015 23:06:02 GMT',
  2467. 'content-type' => 'application/json; charset=utf-8',
  2468. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2469. }, 'HTTP::Headers' );
  2470. $VAR5 = '[{"id":641,"test_id":592,"status_id":9,"created_by":1,"created_on":1437087962,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":633,"test_id":592,"status_id":4,"created_by":1,"created_on":1437087814,"assignedto_id":null,"comment":null,"version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":628,"test_id":592,"status_id":9,"created_by":1,"created_on":1437087454,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}]';
  2471. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2472. }
  2473. #Configuration goodies
  2474. {
  2475. $VAR1 = 'index.php?/api/v2/add_config_group/9';
  2476. $VAR2 = '200';
  2477. $VAR3 = 'OK';
  2478. $VAR4 = bless( {
  2479. 'connection' => 'close',
  2480. 'client-peer' => '192.168.122.217:80',
  2481. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2482. 'content-length' => '51',
  2483. '::std_case' => {
  2484. 'client-date' => 'Client-Date',
  2485. 'x-powered-by' => 'X-Powered-By',
  2486. 'client-peer' => 'Client-Peer',
  2487. 'client-response-num' => 'Client-Response-Num'
  2488. },
  2489. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2490. 'client-date' => 'Thu, 18 Feb 2016 02:57:34 GMT',
  2491. 'client-response-num' => 1,
  2492. 'date' => 'Thu, 18 Feb 2016 02:57:34 GMT',
  2493. 'content-type' => 'application/json; charset=utf-8'
  2494. }, 'HTTP::Headers' );
  2495. $VAR5 = '{"id":3,"name":"zippy","project_id":9,"configs":[]}';
  2496. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2497. }
  2498. {
  2499. $VAR1 = 'index.php?/api/v2/update_config_group/3';
  2500. $VAR2 = '200';
  2501. $VAR3 = 'OK';
  2502. $VAR4 = bless( {
  2503. '::std_case' => {
  2504. 'x-powered-by' => 'X-Powered-By',
  2505. 'client-date' => 'Client-Date',
  2506. 'client-peer' => 'Client-Peer',
  2507. 'client-response-num' => 'Client-Response-Num'
  2508. },
  2509. 'client-peer' => '192.168.122.217:80',
  2510. 'connection' => 'close',
  2511. 'content-length' => '52',
  2512. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2513. 'client-response-num' => 1,
  2514. 'content-type' => 'application/json; charset=utf-8',
  2515. 'date' => 'Thu, 18 Feb 2016 02:57:34 GMT',
  2516. 'client-date' => 'Thu, 18 Feb 2016 02:57:34 GMT',
  2517. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14'
  2518. }, 'HTTP::Headers' );
  2519. $VAR5 = '{"id":3,"name":"doodah","project_id":3,"configs":[]}';
  2520. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2521. }
  2522. {
  2523. $VAR1 = 'index.php?/api/v2/add_config/3';
  2524. $VAR2 = '200';
  2525. $VAR3 = 'OK';
  2526. $VAR4 = bless( {
  2527. '::std_case' => {
  2528. 'client-peer' => 'Client-Peer',
  2529. 'x-powered-by' => 'X-Powered-By',
  2530. 'client-date' => 'Client-Date',
  2531. 'client-response-num' => 'Client-Response-Num'
  2532. },
  2533. 'connection' => 'close',
  2534. 'client-peer' => '192.168.122.217:80',
  2535. 'content-length' => '40',
  2536. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2537. 'client-response-num' => 1,
  2538. 'date' => 'Thu, 18 Feb 2016 02:57:34 GMT',
  2539. 'content-type' => 'application/json; charset=utf-8',
  2540. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2541. 'client-date' => 'Thu, 18 Feb 2016 02:57:35 GMT'
  2542. }, 'HTTP::Headers' );
  2543. $VAR5 = '{"id":2,"name":"potzrebie","group_id":3}';
  2544. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2545. }
  2546. {
  2547. $VAR1 = 'index.php?/api/v2/update_config/2';
  2548. $VAR2 = '200';
  2549. $VAR3 = 'OK';
  2550. $VAR4 = bless( {
  2551. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2552. 'client-date' => 'Thu, 18 Feb 2016 02:57:35 GMT',
  2553. 'client-response-num' => 1,
  2554. 'content-type' => 'application/json; charset=utf-8',
  2555. 'date' => 'Thu, 18 Feb 2016 02:57:35 GMT',
  2556. 'connection' => 'close',
  2557. 'client-peer' => '192.168.122.217:80',
  2558. 'content-length' => '37',
  2559. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2560. '::std_case' => {
  2561. 'client-date' => 'Client-Date',
  2562. 'x-powered-by' => 'X-Powered-By',
  2563. 'client-peer' => 'Client-Peer',
  2564. 'client-response-num' => 'Client-Response-Num'
  2565. }
  2566. }, 'HTTP::Headers' );
  2567. $VAR5 = '{"id":2,"name":"poyiut","group_id":3}';
  2568. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2569. }
  2570. {
  2571. $VAR1 = 'index.php?/api/v2/delete_config/2';
  2572. $VAR2 = '200';
  2573. $VAR3 = 'OK';
  2574. $VAR4 = bless( {
  2575. 'date' => 'Thu, 18 Feb 2016 02:57:35 GMT',
  2576. 'content-type' => 'application/json; charset=utf-8',
  2577. 'client-response-num' => 1,
  2578. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2579. 'client-date' => 'Thu, 18 Feb 2016 02:57:35 GMT',
  2580. '::std_case' => {
  2581. 'client-response-num' => 'Client-Response-Num',
  2582. 'client-date' => 'Client-Date',
  2583. 'x-powered-by' => 'X-Powered-By',
  2584. 'client-peer' => 'Client-Peer'
  2585. },
  2586. 'content-length' => '0',
  2587. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2588. 'connection' => 'close',
  2589. 'client-peer' => '192.168.122.217:80'
  2590. }, 'HTTP::Headers' );
  2591. $VAR5 = '';
  2592. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2593. }
  2594. {
  2595. $VAR1 = 'index.php?/api/v2/delete_config_group/3';
  2596. $VAR2 = '200';
  2597. $VAR3 = 'OK';
  2598. $VAR4 = bless( {
  2599. 'client-date' => 'Thu, 18 Feb 2016 02:57:35 GMT',
  2600. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2601. 'content-type' => 'application/json; charset=utf-8',
  2602. 'date' => 'Thu, 18 Feb 2016 02:57:35 GMT',
  2603. 'client-response-num' => 1,
  2604. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2605. 'content-length' => '0',
  2606. 'client-peer' => '192.168.122.217:80',
  2607. 'connection' => 'close',
  2608. '::std_case' => {
  2609. 'client-peer' => 'Client-Peer',
  2610. 'client-date' => 'Client-Date',
  2611. 'x-powered-by' => 'X-Powered-By',
  2612. 'client-response-num' => 'Client-Response-Num'
  2613. }
  2614. }, 'HTTP::Headers' );
  2615. $VAR5 = '';
  2616. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2617. }
  2618. ########################
  2619. # getChildSections mocks
  2620. ########################
  2621. {
  2622. $VAR1 = 'index.php?/api/v2/get_suites/3';
  2623. $VAR2 = '200';
  2624. $VAR3 = 'OK';
  2625. $VAR4 = bless( {
  2626. 'date' => 'Wed, 10 Aug 2016 03:07:51 GMT',
  2627. 'connection' => 'close',
  2628. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2629. 'content-length' => '199',
  2630. '::std_case' => {
  2631. 'client-date' => 'Client-Date',
  2632. 'client-response-num' => 'Client-Response-Num',
  2633. 'client-peer' => 'Client-Peer',
  2634. 'x-powered-by' => 'X-Powered-By'
  2635. },
  2636. 'client-date' => 'Wed, 10 Aug 2016 03:07:51 GMT',
  2637. 'client-response-num' => 1,
  2638. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2639. 'client-peer' => '192.168.122.217:80',
  2640. 'content-type' => 'application/json; charset=utf-8'
  2641. }, 'HTTP::Headers' );
  2642. $VAR5 = '[{"id":5,"name":"Master","description":null,"project_id":3,"is_master":true,"is_baseline":false,"is_completed":false,"completed_on":null,"url":"http:\\/\\/testrail.local\\/index.php?\\/suites\\/view\\/5"}]';
  2643. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2644. }
  2645. {
  2646. $VAR1 = 'index.php?/api/v2/get_sections/3&suite_id=5';
  2647. $VAR2 = '200';
  2648. $VAR3 = 'OK';
  2649. $VAR4 = bless( {
  2650. '::std_case' => {
  2651. 'client-response-num' => 'Client-Response-Num',
  2652. 'client-peer' => 'Client-Peer',
  2653. 'x-powered-by' => 'X-Powered-By',
  2654. 'client-date' => 'Client-Date'
  2655. },
  2656. 'client-date' => 'Wed, 10 Aug 2016 03:07:52 GMT',
  2657. 'date' => 'Wed, 10 Aug 2016 03:07:51 GMT',
  2658. 'connection' => 'close',
  2659. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2660. 'content-length' => '835',
  2661. 'content-type' => 'application/json; charset=utf-8',
  2662. 'client-peer' => '192.168.122.217:80',
  2663. 'client-response-num' => 1,
  2664. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2665. }, 'HTTP::Headers' );
  2666. $VAR5 = '[{"id":6,"suite_id":5,"name":"Column A","description":null,"parent_id":null,"display_order":1,"depth":0},{"id":8,"suite_id":5,"name":"zippy","description":null,"parent_id":6,"display_order":2,"depth":1},{"id":7,"suite_id":5,"name":"Column B","description":null,"parent_id":null,"display_order":3,"depth":0},{"id":9,"suite_id":5,"name":"zippy","description":null,"parent_id":7,"display_order":4,"depth":1},{"id":11,"suite_id":5,"name":"Recursing section","description":null,"parent_id":null,"display_order":5,"depth":0},{"id":12,"suite_id":5,"name":"child","description":null,"parent_id":11,"display_order":6,"depth":1},{"id":13,"suite_id":5,"name":"grandchild","description":null,"parent_id":12,"display_order":7,"depth":2},{"id":14,"suite_id":5,"name":"great-grandchild","description":null,"parent_id":13,"display_order":8,"depth":3}]';
  2667. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2668. }
  2669. {
  2670. $VAR1 = 'index.php?/api/v2/get_sections/9&suite_id=5';
  2671. $VAR2 = '200';
  2672. $VAR3 = 'OK';
  2673. $VAR4 = bless( {
  2674. '::std_case' => {
  2675. 'client-response-num' => 'Client-Response-Num',
  2676. 'client-peer' => 'Client-Peer',
  2677. 'x-powered-by' => 'X-Powered-By',
  2678. 'client-date' => 'Client-Date'
  2679. },
  2680. 'client-date' => 'Wed, 10 Aug 2016 03:07:52 GMT',
  2681. 'date' => 'Wed, 10 Aug 2016 03:07:51 GMT',
  2682. 'connection' => 'close',
  2683. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2684. 'content-length' => '835',
  2685. 'content-type' => 'application/json; charset=utf-8',
  2686. 'client-peer' => '192.168.122.217:80',
  2687. 'client-response-num' => 1,
  2688. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2689. }, 'HTTP::Headers' );
  2690. $VAR5 = '[{"id":6,"suite_id":5,"name":"Column A","description":null,"parent_id":null,"display_order":1,"depth":0},{"id":8,"suite_id":5,"name":"zippy","description":null,"parent_id":6,"display_order":2,"depth":1},{"id":7,"suite_id":5,"name":"Column B","description":null,"parent_id":null,"display_order":3,"depth":0},{"id":9,"suite_id":5,"name":"zippy","description":null,"parent_id":7,"display_order":4,"depth":1},{"id":11,"suite_id":5,"name":"Recursing section","description":null,"parent_id":null,"display_order":5,"depth":0},{"id":12,"suite_id":5,"name":"child","description":null,"parent_id":11,"display_order":6,"depth":1},{"id":13,"suite_id":5,"name":"grandchild","description":null,"parent_id":12,"display_order":7,"depth":2},{"id":14,"suite_id":5,"name":"great-grandchild","description":null,"parent_id":13,"display_order":8,"depth":3}]';
  2691. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2692. }
  2693. {
  2694. $VAR1 = 'index.php?/api/v2/get_configs/3';
  2695. $VAR2 = '200';
  2696. $VAR3 = 'OK';
  2697. $VAR4 = bless( {
  2698. 'client-response-num' => 1,
  2699. 'content-length' => '2',
  2700. 'connection' => 'close',
  2701. 'content-type' => 'application/json; charset=utf-8',
  2702. '::std_case' => {
  2703. 'client-date' => 'Client-Date',
  2704. 'x-powered-by' => 'X-Powered-By',
  2705. 'client-peer' => 'Client-Peer',
  2706. 'client-response-num' => 'Client-Response-Num'
  2707. },
  2708. 'client-peer' => '192.168.122.217:80',
  2709. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2710. 'client-date' => 'Wed, 10 Aug 2016 03:39:47 GMT',
  2711. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2712. 'date' => 'Wed, 10 Aug 2016 03:39:47 GMT'
  2713. }, 'HTTP::Headers' );
  2714. $VAR5 = '[]';
  2715. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2716. }
  2717. {
  2718. $VAR1 = 'index.php?/api/v2/get_runs/3&offset=0&limit=250';
  2719. $VAR2 = '200';
  2720. $VAR3 = 'OK';
  2721. $VAR4 = bless( {
  2722. 'date' => 'Wed, 10 Aug 2016 03:39:47 GMT',
  2723. 'client-date' => 'Wed, 10 Aug 2016 03:39:47 GMT',
  2724. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2725. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2726. 'client-peer' => '192.168.122.217:80',
  2727. 'content-type' => 'application/json; charset=utf-8',
  2728. '::std_case' => {
  2729. 'client-peer' => 'Client-Peer',
  2730. 'client-response-num' => 'Client-Response-Num',
  2731. 'client-date' => 'Client-Date',
  2732. 'x-powered-by' => 'X-Powered-By'
  2733. },
  2734. 'connection' => 'close',
  2735. 'content-length' => '588',
  2736. 'client-response-num' => 1
  2737. }, 'HTTP::Headers' );
  2738. $VAR5 = '[{"id":32,"suite_id":5,"name":"Master Shake","description":null,"milestone_id":null,"assignedto_id":null,"include_all":true,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":1,"blocked_count":0,"untested_count":3,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":3,"plan_id":null,"created_on":1470345740,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/32"}]';
  2739. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2740. }
  2741. {
  2742. $VAR1 = 'index.php?/api/v2/get_sections/3&suite_id=5';
  2743. $VAR2 = '200';
  2744. $VAR3 = 'OK';
  2745. $VAR4 = bless( {
  2746. 'date' => 'Wed, 10 Aug 2016 03:39:47 GMT',
  2747. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2748. 'client-peer' => '192.168.122.217:80',
  2749. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2750. 'client-date' => 'Wed, 10 Aug 2016 03:39:47 GMT',
  2751. '::std_case' => {
  2752. 'client-response-num' => 'Client-Response-Num',
  2753. 'client-peer' => 'Client-Peer',
  2754. 'x-powered-by' => 'X-Powered-By',
  2755. 'client-date' => 'Client-Date'
  2756. },
  2757. 'content-type' => 'application/json; charset=utf-8',
  2758. 'client-response-num' => 1,
  2759. 'content-length' => '835',
  2760. 'connection' => 'close'
  2761. }, 'HTTP::Headers' );
  2762. $VAR5 = '[{"id":6,"suite_id":5,"name":"Column A","description":null,"parent_id":null,"display_order":1,"depth":0},{"id":8,"suite_id":5,"name":"zippy","description":null,"parent_id":6,"display_order":2,"depth":1},{"id":7,"suite_id":5,"name":"Column B","description":null,"parent_id":null,"display_order":3,"depth":0},{"id":9,"suite_id":5,"name":"zippy","description":null,"parent_id":7,"display_order":4,"depth":1},{"id":11,"suite_id":5,"name":"Recursing section","description":null,"parent_id":null,"display_order":5,"depth":0},{"id":12,"suite_id":5,"name":"child","description":null,"parent_id":11,"display_order":6,"depth":1},{"id":13,"suite_id":5,"name":"grandchild","description":null,"parent_id":12,"display_order":7,"depth":2},{"id":14,"suite_id":5,"name":"great-grandchild","description":null,"parent_id":13,"display_order":8,"depth":3}]';
  2763. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2764. }
  2765. {
  2766. $VAR1 = 'index.php?/api/v2/get_cases/3&suite_id=5&section_id=11';
  2767. $VAR2 = '200';
  2768. $VAR3 = 'OK';
  2769. $VAR4 = bless( {
  2770. 'date' => 'Wed, 10 Aug 2016 03:39:47 GMT',
  2771. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2772. 'client-peer' => '192.168.122.217:80',
  2773. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2774. 'client-date' => 'Wed, 10 Aug 2016 03:39:48 GMT',
  2775. '::std_case' => {
  2776. 'x-powered-by' => 'X-Powered-By',
  2777. 'client-date' => 'Client-Date',
  2778. 'client-response-num' => 'Client-Response-Num',
  2779. 'client-peer' => 'Client-Peer'
  2780. },
  2781. 'content-type' => 'application/json; charset=utf-8',
  2782. 'client-response-num' => 1,
  2783. 'content-length' => '2',
  2784. 'connection' => 'close'
  2785. }, 'HTTP::Headers' );
  2786. $VAR5 = '[]';
  2787. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2788. }
  2789. {
  2790. $VAR1 = 'index.php?/api/v2/get_cases/3&suite_id=5&section_id=14';
  2791. $VAR2 = '200';
  2792. $VAR3 = 'OK';
  2793. $VAR4 = bless( {
  2794. 'date' => 'Wed, 10 Aug 2016 03:39:48 GMT',
  2795. 'client-date' => 'Wed, 10 Aug 2016 03:39:48 GMT',
  2796. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2797. 'client-peer' => '192.168.122.217:80',
  2798. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2799. 'content-type' => 'application/json; charset=utf-8',
  2800. '::std_case' => {
  2801. 'client-peer' => 'Client-Peer',
  2802. 'client-response-num' => 'Client-Response-Num',
  2803. 'client-date' => 'Client-Date',
  2804. 'x-powered-by' => 'X-Powered-By'
  2805. },
  2806. 'connection' => 'close',
  2807. 'content-length' => '321',
  2808. 'client-response-num' => 1
  2809. }, 'HTTP::Headers' );
  2810. $VAR5 = '[{"id":16,"title":"pass.test","section_id":14,"template_id":1,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1470799296,"updated_by":1,"updated_on":1470799296,"estimate":null,"estimate_forecast":null,"suite_id":5,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  2811. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2812. }
  2813. {
  2814. $VAR1 = 'index.php?/api/v2/get_cases/3&suite_id=5&section_id=12';
  2815. $VAR2 = '200';
  2816. $VAR3 = 'OK';
  2817. $VAR4 = bless( {
  2818. 'date' => 'Wed, 10 Aug 2016 03:39:48 GMT',
  2819. 'client-peer' => '192.168.122.217:80',
  2820. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2821. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2822. 'client-date' => 'Wed, 10 Aug 2016 03:39:48 GMT',
  2823. '::std_case' => {
  2824. 'client-response-num' => 'Client-Response-Num',
  2825. 'client-peer' => 'Client-Peer',
  2826. 'x-powered-by' => 'X-Powered-By',
  2827. 'client-date' => 'Client-Date'
  2828. },
  2829. 'content-type' => 'application/json; charset=utf-8',
  2830. 'client-response-num' => 1,
  2831. 'content-length' => '321',
  2832. 'connection' => 'close'
  2833. }, 'HTTP::Headers' );
  2834. $VAR5 = '[{"id":17,"title":"fake.test","section_id":12,"template_id":1,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1470799305,"updated_by":1,"updated_on":1470799305,"estimate":null,"estimate_forecast":null,"suite_id":5,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  2835. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2836. }
  2837. {
  2838. $VAR1 = 'index.php?/api/v2/get_cases/3&suite_id=5&section_id=13';
  2839. $VAR2 = '200';
  2840. $VAR3 = 'OK';
  2841. $VAR4 = bless( {
  2842. 'date' => 'Wed, 10 Aug 2016 03:39:48 GMT',
  2843. 'client-peer' => '192.168.122.217:80',
  2844. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2845. 'client-date' => 'Wed, 10 Aug 2016 03:39:48 GMT',
  2846. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2847. 'content-type' => 'application/json; charset=utf-8',
  2848. '::std_case' => {
  2849. 'client-date' => 'Client-Date',
  2850. 'x-powered-by' => 'X-Powered-By',
  2851. 'client-peer' => 'Client-Peer',
  2852. 'client-response-num' => 'Client-Response-Num'
  2853. },
  2854. 'client-response-num' => 1,
  2855. 'connection' => 'close',
  2856. 'content-length' => '321'
  2857. }, 'HTTP::Headers' );
  2858. $VAR5 = '[{"id":18,"title":"skip.test","section_id":13,"template_id":1,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1470799317,"updated_by":1,"updated_on":1470799317,"estimate":null,"estimate_forecast":null,"suite_id":5,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  2859. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2860. }
  2861. {
  2862. $VAR1 = 'index.php?/api/v2/add_run/3';
  2863. $VAR2 = '200';
  2864. $VAR3 = 'OK';
  2865. $VAR4 = bless( {
  2866. 'date' => 'Wed, 10 Aug 2016 03:39:48 GMT',
  2867. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2868. 'client-date' => 'Wed, 10 Aug 2016 03:39:48 GMT',
  2869. 'client-peer' => '192.168.122.217:80',
  2870. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2871. '::std_case' => {
  2872. 'client-peer' => 'Client-Peer',
  2873. 'client-response-num' => 'Client-Response-Num',
  2874. 'client-date' => 'Client-Date',
  2875. 'x-powered-by' => 'X-Powered-By'
  2876. },
  2877. 'content-type' => 'application/json; charset=utf-8',
  2878. 'connection' => 'close',
  2879. 'content-length' => '625',
  2880. 'client-response-num' => 1
  2881. }, 'HTTP::Headers' );
  2882. $VAR5 = '{"id":36,"suite_id":5,"name":"zippyRun","description":"Automatically created Run from TestRail::API","milestone_id":null,"assignedto_id":null,"include_all":false,"is_completed":false,"completed_on":null,"config":null,"config_ids":[],"passed_count":0,"blocked_count":0,"untested_count":3,"retest_count":0,"failed_count":0,"custom_status1_count":0,"custom_status2_count":0,"custom_status3_count":0,"custom_status4_count":0,"custom_status5_count":0,"custom_status6_count":0,"custom_status7_count":0,"project_id":3,"plan_id":null,"created_on":1470800388,"created_by":1,"url":"http:\\/\\/testrail.local\\/index.php?\\/runs\\/view\\/36"}';
  2883. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2884. }
  2885. {
  2886. $VAR1 = 'index.php?/api/v2/get_tests/36';
  2887. $VAR2 = '200';
  2888. $VAR3 = 'OK';
  2889. $VAR4 = bless( {
  2890. 'date' => 'Wed, 10 Aug 2016 03:39:49 GMT',
  2891. 'client-date' => 'Wed, 10 Aug 2016 03:39:49 GMT',
  2892. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2893. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2894. 'client-peer' => '192.168.122.217:80',
  2895. 'content-type' => 'application/json; charset=utf-8',
  2896. '::std_case' => {
  2897. 'client-response-num' => 'Client-Response-Num',
  2898. 'client-peer' => 'Client-Peer',
  2899. 'x-powered-by' => 'X-Powered-By',
  2900. 'client-date' => 'Client-Date'
  2901. },
  2902. 'content-length' => '820',
  2903. 'connection' => 'close',
  2904. 'client-response-num' => 1
  2905. }, 'HTTP::Headers' );
  2906. $VAR5 = '[{"id":43,"case_id":17,"status_id":3,"assignedto_id":null,"run_id":36,"title":"fake.test","template_id":1,"type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":44,"case_id":18,"status_id":3,"assignedto_id":null,"run_id":36,"title":"skip.test","template_id":1,"type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":42,"case_id":16,"status_id":3,"assignedto_id":null,"run_id":36,"title":"pass.test","template_id":1,"type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  2907. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2908. }
  2909. {
  2910. $VAR1 = 'index.php?/api/v2/add_result/42';
  2911. $VAR2 = '200';
  2912. $VAR3 = 'OK';
  2913. $VAR4 = bless( {
  2914. 'client-response-num' => 1,
  2915. 'connection' => 'close',
  2916. 'content-length' => '194',
  2917. 'content-type' => 'application/json; charset=utf-8',
  2918. '::std_case' => {
  2919. 'client-response-num' => 'Client-Response-Num',
  2920. 'client-peer' => 'Client-Peer',
  2921. 'x-powered-by' => 'X-Powered-By',
  2922. 'client-date' => 'Client-Date'
  2923. },
  2924. 'client-peer' => '192.168.122.217:80',
  2925. 'server' => 'Apache/2.4.7 (Ubuntu)',
  2926. 'client-date' => 'Wed, 10 Aug 2016 03:39:49 GMT',
  2927. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.14',
  2928. 'date' => 'Wed, 10 Aug 2016 03:39:49 GMT'
  2929. }, 'HTTP::Headers' );
  2930. $VAR5 = '{"id":516,"test_id":42,"status_id":1,"created_by":1,"created_on":1470800389,"assignedto_id":null,"comment":"[22:39:48 Aug 9 2016 (0s)] ok 1 - yay!","version":null,"elapsed":null,"defects":null}';
  2931. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2932. }
  2933. {
  2934. $VAR1 = 'index.php?/api/v2/get_plans/3';
  2935. $VAR2 = '200';
  2936. $VAR3 = 'OK';
  2937. $VAR4 = bless( {
  2938. 'connection' => 'close',
  2939. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.5',
  2940. 'client-response-num' => 1,
  2941. 'date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  2942. 'client-peer' => '192.168.122.217:80',
  2943. 'content-length' => '554',
  2944. '::std_case' => {
  2945. 'client-date' => 'Client-Date',
  2946. 'x-powered-by' => 'X-Powered-By',
  2947. 'client-response-num' => 'Client-Response-Num',
  2948. 'client-peer' => 'Client-Peer'
  2949. },
  2950. 'client-date' => 'Tue, 23 Dec 2014 20:02:10 GMT',
  2951. 'content-type' => 'application/json; charset=utf-8',
  2952. 'server' => 'Apache/2.4.7 (Ubuntu)'
  2953. }, 'HTTP::Headers' );
  2954. $VAR5 = '[]';
  2955. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  2956. }
  2957. {
  2958. $VAR1 = 'index.php?/api/v2/get_results_for_run/22&limit=250';
  2959. $VAR2 = '200';
  2960. $VAR3 = 'OK';
  2961. $VAR4 = bless( {
  2962. 'client-ssl-socket-class' => 'IO::Socket::SSL',
  2963. 'connection' => 'close',
  2964. 'client-response-num' => 1,
  2965. 'client-peer' => '192.168.122.217:80',
  2966. '::std_case' => {
  2967. 'client-peer' => 'Client-Peer',
  2968. 'client-date' => 'Client-Date',
  2969. 'x-powered-by' => 'X-Powered-By',
  2970. 'client-response-num' => 'Client-Response-Num',
  2971. 'client-ssl-socket-class' => 'Client-SSL-Socket-Class',
  2972. 'client-transfer-encoding' => 'Client-Transfer-Encoding',
  2973. 'client-ssl-cert-issuer' => 'Client-SSL-Cert-Issuer',
  2974. 'client-ssl-cipher' => 'Client-SSL-Cipher',
  2975. 'client-ssl-cert-subject' => 'Client-SSL-Cert-Subject',
  2976. 'strict-transport-security' => 'Strict-Transport-Security'
  2977. },
  2978. 'x-powered-by' => 'PHP/5.6.26',
  2979. 'client-date' => 'Mon, 20 Feb 2017 17:10:10 GMT',
  2980. 'strict-transport-security' => 'max-age=63072000;',
  2981. 'date' => 'Mon, 20 Feb 2017 17:07:58 GMT',
  2982. 'content-type' => 'application/json; charset=utf-8',
  2983. 'server' => 'Apache/2.2.15 (CentOS)',
  2984. 'client-ssl-cipher' => 'ECDHE-RSA-AES128-GCM-SHA256',
  2985. 'client-transfer-encoding' => [
  2986. 'chunked'
  2987. ]
  2988. }, 'HTTP::Headers' );
  2989. $VAR5 = '[
  2990. {
  2991. "assignedto_id":1,
  2992. "created_by":22,
  2993. "comment":"Zippy",
  2994. "test_id":1,
  2995. "defects":[],
  2996. "id":12345,
  2997. "created_on":1480726605,
  2998. "version":"333",
  2999. "status_id":2,
  3000. "custom_step_results":0,
  3001. "elapsed":123
  3002. },
  3003. {
  3004. "assignedto_id":1,
  3005. "created_by":22,
  3006. "comment":"Zippy",
  3007. "test_id":2,
  3008. "defects":[],
  3009. "id":12346,
  3010. "created_on":1480726605,
  3011. "version":"333",
  3012. "status_id":2,
  3013. "custom_step_results":0,
  3014. "elapsed":123
  3015. },
  3016. {
  3017. "assignedto_id":1,
  3018. "created_by":22,
  3019. "comment":"Zippy",
  3020. "test_id":3,
  3021. "defects":[],
  3022. "id":12347,
  3023. "created_on":1480726605,
  3024. "version":"333",
  3025. "status_id":2,
  3026. "custom_step_results":0,
  3027. "elapsed":123
  3028. }]';
  3029. $mockObject->map_response(qr/\Q$VAR1\E/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3030. }
  3031. ###########
  3032. #Lock mocks
  3033. ###########
  3034. sub lockMockStep0 {
  3035. $VAR1 = 'index.php?/api/v2/get_tests/1099';
  3036. $VAR2 = '200';
  3037. $VAR3 = 'OK';
  3038. $VAR4 = bless( {
  3039. 'connection' => 'close',
  3040. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3041. 'client-response-num' => 1,
  3042. 'date' => 'Thu, 16 Jul 2015 23:05:54 GMT',
  3043. 'client-peer' => '192.168.122.217:80',
  3044. 'content-length' => '1613',
  3045. '::std_case' => {
  3046. 'client-date' => 'Client-Date',
  3047. 'x-powered-by' => 'X-Powered-By',
  3048. 'client-response-num' => 'Client-Response-Num',
  3049. 'client-peer' => 'Client-Peer'
  3050. },
  3051. 'client-date' => 'Thu, 16 Jul 2015 23:05:54 GMT',
  3052. 'content-type' => 'application/json; charset=utf-8',
  3053. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3054. }, 'HTTP::Headers' );
  3055. $VAR5 = '[{"id":587,"case_id":14,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"lockme.test","type_id":1,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":588,"case_id":15,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"lockmetoo.test","type_id":1,"priority_id":2,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":590,"case_id":16,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"lockmealso.test","type_id":1,"priority_id":5,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":591,"case_id":17,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"sortalockme.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":592,"case_id":18,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_nothere.test","type_id":1,"priority_id":3,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":593,"case_id":19,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_alsonothere.test","type_id":6,"priority_id":1,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  3056. my $cloned = clone $mockObject;
  3057. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3058. return $cloned;
  3059. }
  3060. sub lockMockStep1 {
  3061. $VAR1 = 'index.php?/api/v2/get_tests/1099';
  3062. $VAR2 = '200';
  3063. $VAR3 = 'OK';
  3064. $VAR4 = bless( {
  3065. 'connection' => 'close',
  3066. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3067. 'client-response-num' => 1,
  3068. 'date' => 'Thu, 16 Jul 2015 23:05:55 GMT',
  3069. 'client-peer' => '192.168.122.217:80',
  3070. 'content-length' => '1613',
  3071. '::std_case' => {
  3072. 'client-date' => 'Client-Date',
  3073. 'x-powered-by' => 'X-Powered-By',
  3074. 'client-response-num' => 'Client-Response-Num',
  3075. 'client-peer' => 'Client-Peer'
  3076. },
  3077. 'client-date' => 'Thu, 16 Jul 2015 23:05:55 GMT',
  3078. 'content-type' => 'application/json; charset=utf-8',
  3079. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3080. }, 'HTTP::Headers' );
  3081. $VAR5 = '[{"id":587,"case_id":14,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"lockme.test","type_id":1,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":588,"case_id":15,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"lockmetoo.test","type_id":1,"priority_id":2,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":590,"case_id":16,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmealso.test","type_id":1,"priority_id":5,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":591,"case_id":17,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"sortalockme.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":592,"case_id":18,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_nothere.test","type_id":1,"priority_id":3,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":593,"case_id":19,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_alsonothere.test","type_id":6,"priority_id":1,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  3082. my $cloned = clone $mockObject;
  3083. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3084. $VAR1 = 'index.php?/api/v2/add_result/587';
  3085. $VAR2 = '200';
  3086. $VAR3 = 'OK';
  3087. $VAR4 = bless( {
  3088. 'connection' => 'close',
  3089. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3090. 'client-response-num' => 1,
  3091. 'date' => 'Thu, 16 Jul 2015 23:05:56 GMT',
  3092. 'client-peer' => '192.168.122.217:80',
  3093. 'content-length' => '353',
  3094. '::std_case' => {
  3095. 'client-date' => 'Client-Date',
  3096. 'x-powered-by' => 'X-Powered-By',
  3097. 'client-response-num' => 'Client-Response-Num',
  3098. 'client-peer' => 'Client-Peer'
  3099. },
  3100. 'client-date' => 'Thu, 16 Jul 2015 23:05:55 GMT',
  3101. 'content-type' => 'application/json; charset=utf-8',
  3102. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3103. }, 'HTTP::Headers' );
  3104. $VAR5 = '{"id":636,"test_id":587,"status_id":9,"created_by":1,"created_on":1437087956,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}';
  3105. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3106. $VAR1 = 'index.php?/api/v2/get_results/587&limit=100';
  3107. $VAR2 = '200';
  3108. $VAR3 = 'OK';
  3109. $VAR4 = bless( {
  3110. 'connection' => 'close',
  3111. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3112. 'client-response-num' => 1,
  3113. 'date' => 'Thu, 16 Jul 2015 23:05:56 GMT',
  3114. 'client-peer' => '192.168.122.217:80',
  3115. 'content-length' => '1250',
  3116. '::std_case' => {
  3117. 'client-date' => 'Client-Date',
  3118. 'x-powered-by' => 'X-Powered-By',
  3119. 'client-response-num' => 'Client-Response-Num',
  3120. 'client-peer' => 'Client-Peer'
  3121. },
  3122. 'client-date' => 'Thu, 16 Jul 2015 23:05:56 GMT',
  3123. 'content-type' => 'application/json; charset=utf-8',
  3124. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3125. }, 'HTTP::Headers' );
  3126. $VAR5 = '[{"id":636,"test_id":587,"status_id":9,"created_by":1,"created_on":1437087956,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":629,"test_id":587,"status_id":4,"created_by":1,"created_on":1437087814,"assignedto_id":null,"comment":null,"version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":625,"test_id":587,"status_id":9,"created_by":1,"created_on":1437087451,"assignedto_id":null,"comment":"Test Locked by race.bannon.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":623,"test_id":587,"status_id":9,"created_by":1,"created_on":1437087448,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}]';
  3127. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3128. return $cloned;
  3129. }
  3130. sub lockMockStep2 {
  3131. $VAR1 = 'index.php?/api/v2/get_tests/1099';
  3132. $VAR2 = '200';
  3133. $VAR3 = 'OK';
  3134. $VAR4 = bless( {
  3135. 'connection' => 'close',
  3136. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3137. 'client-response-num' => 1,
  3138. 'date' => 'Thu, 16 Jul 2015 23:05:56 GMT',
  3139. 'client-peer' => '192.168.122.217:80',
  3140. 'content-length' => '1613',
  3141. '::std_case' => {
  3142. 'client-date' => 'Client-Date',
  3143. 'x-powered-by' => 'X-Powered-By',
  3144. 'client-response-num' => 'Client-Response-Num',
  3145. 'client-peer' => 'Client-Peer'
  3146. },
  3147. 'client-date' => 'Thu, 16 Jul 2015 23:05:56 GMT',
  3148. 'content-type' => 'application/json; charset=utf-8',
  3149. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3150. }, 'HTTP::Headers' );
  3151. $VAR5 = '[{"id":587,"case_id":14,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockme.test","type_id":1,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":588,"case_id":15,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"lockmetoo.test","type_id":1,"priority_id":2,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":590,"case_id":16,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmealso.test","type_id":1,"priority_id":5,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":591,"case_id":17,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"sortalockme.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":592,"case_id":18,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_nothere.test","type_id":1,"priority_id":3,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":593,"case_id":19,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_alsonothere.test","type_id":6,"priority_id":1,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  3152. my $cloned = clone $mockObject;
  3153. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3154. return $cloned;
  3155. }
  3156. sub lockMockStep3 {
  3157. $VAR1 = 'index.php?/api/v2/get_tests/1099';
  3158. $VAR2 = '200';
  3159. $VAR3 = 'OK';
  3160. $VAR4 = bless( {
  3161. 'connection' => 'close',
  3162. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3163. 'client-response-num' => 1,
  3164. 'date' => 'Thu, 16 Jul 2015 23:05:57 GMT',
  3165. 'client-peer' => '192.168.122.217:80',
  3166. 'content-length' => '1613',
  3167. '::std_case' => {
  3168. 'client-date' => 'Client-Date',
  3169. 'x-powered-by' => 'X-Powered-By',
  3170. 'client-response-num' => 'Client-Response-Num',
  3171. 'client-peer' => 'Client-Peer'
  3172. },
  3173. 'client-date' => 'Thu, 16 Jul 2015 23:05:57 GMT',
  3174. 'content-type' => 'application/json; charset=utf-8',
  3175. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3176. }, 'HTTP::Headers' );
  3177. $VAR5 = '[{"id":587,"case_id":14,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockme.test","type_id":1,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":588,"case_id":15,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmetoo.test","type_id":1,"priority_id":2,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":590,"case_id":16,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmealso.test","type_id":1,"priority_id":5,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":591,"case_id":17,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"sortalockme.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":592,"case_id":18,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_nothere.test","type_id":1,"priority_id":3,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":593,"case_id":19,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_alsonothere.test","type_id":6,"priority_id":1,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  3178. my $cloned = clone $mockObject;
  3179. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3180. return $cloned;
  3181. }
  3182. sub lockMockStep4 {
  3183. $VAR1 = 'index.php?/api/v2/get_tests/1099';
  3184. $VAR2 = '200';
  3185. $VAR3 = 'OK';
  3186. $VAR4 = bless( {
  3187. 'connection' => 'close',
  3188. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3189. 'client-response-num' => 1,
  3190. 'date' => 'Thu, 16 Jul 2015 23:05:58 GMT',
  3191. 'client-peer' => '192.168.122.217:80',
  3192. 'content-length' => '1613',
  3193. '::std_case' => {
  3194. 'client-date' => 'Client-Date',
  3195. 'x-powered-by' => 'X-Powered-By',
  3196. 'client-response-num' => 'Client-Response-Num',
  3197. 'client-peer' => 'Client-Peer'
  3198. },
  3199. 'client-date' => 'Thu, 16 Jul 2015 23:05:58 GMT',
  3200. 'content-type' => 'application/json; charset=utf-8',
  3201. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3202. }, 'HTTP::Headers' );
  3203. $VAR5 = '[{"id":587,"case_id":14,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockme.test","type_id":1,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":588,"case_id":15,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmetoo.test","type_id":1,"priority_id":2,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":590,"case_id":16,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmealso.test","type_id":1,"priority_id":5,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":591,"case_id":17,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"sortalockme.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":592,"case_id":18,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_nothere.test","type_id":1,"priority_id":3,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":593,"case_id":19,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_alsonothere.test","type_id":6,"priority_id":1,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  3204. my $cloned = clone $mockObject;
  3205. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3206. $VAR1 = 'index.php?/api/v2/add_result/587';
  3207. $VAR2 = '200';
  3208. $VAR3 = 'OK';
  3209. $VAR4 = bless( {
  3210. 'connection' => 'close',
  3211. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3212. 'client-response-num' => 1,
  3213. 'date' => 'Thu, 16 Jul 2015 23:05:58 GMT',
  3214. 'client-peer' => '192.168.122.217:80',
  3215. 'content-length' => '354',
  3216. '::std_case' => {
  3217. 'client-date' => 'Client-Date',
  3218. 'x-powered-by' => 'X-Powered-By',
  3219. 'client-response-num' => 'Client-Response-Num',
  3220. 'client-peer' => 'Client-Peer'
  3221. },
  3222. 'client-date' => 'Thu, 16 Jul 2015 23:05:58 GMT',
  3223. 'content-type' => 'application/json; charset=utf-8',
  3224. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3225. }, 'HTTP::Headers' );
  3226. $VAR5 = '{"id":638,"test_id":587,"status_id":9,"created_by":1,"created_on":1437087958,"assignedto_id":null,"comment":"Test Locked by race.bannon.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}';
  3227. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3228. $VAR1 = 'index.php?/api/v2/get_results/587&limit=100';
  3229. $VAR2 = '200';
  3230. $VAR3 = 'OK';
  3231. $VAR4 = bless( {
  3232. 'connection' => 'close',
  3233. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3234. 'client-response-num' => 1,
  3235. 'date' => 'Thu, 16 Jul 2015 23:05:58 GMT',
  3236. 'client-peer' => '192.168.122.217:80',
  3237. 'content-length' => '1605',
  3238. '::std_case' => {
  3239. 'client-date' => 'Client-Date',
  3240. 'x-powered-by' => 'X-Powered-By',
  3241. 'client-response-num' => 'Client-Response-Num',
  3242. 'client-peer' => 'Client-Peer'
  3243. },
  3244. 'client-date' => 'Thu, 16 Jul 2015 23:05:58 GMT',
  3245. 'content-type' => 'application/json; charset=utf-8',
  3246. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3247. }, 'HTTP::Headers' );
  3248. $VAR5 = '[{"id":638,"test_id":587,"status_id":9,"created_by":1,"created_on":1437087958,"assignedto_id":null,"comment":"Test Locked by race.bannon.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":636,"test_id":587,"status_id":9,"created_by":1,"created_on":1437087956,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":629,"test_id":587,"status_id":4,"created_by":1,"created_on":1437087814,"assignedto_id":null,"comment":null,"version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":625,"test_id":587,"status_id":9,"created_by":1,"created_on":1437087451,"assignedto_id":null,"comment":"Test Locked by race.bannon.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null},{"id":623,"test_id":587,"status_id":9,"created_by":1,"created_on":1437087448,"assignedto_id":null,"comment":"Test Locked by drs-laptop.\\n\\n If this result is preceded immediately by another lock statement like this, please disregard it;\\n a lock collision occurred.","version":null,"elapsed":null,"defects":null,"custom_step_results":null}]';
  3249. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3250. return $cloned;
  3251. }
  3252. sub lockMockStep5 {
  3253. $VAR1 = 'index.php?/api/v2/get_tests/1099';
  3254. $VAR2 = '200';
  3255. $VAR3 = 'OK';
  3256. $VAR4 = bless( {
  3257. 'connection' => 'close',
  3258. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3259. 'client-response-num' => 1,
  3260. 'date' => 'Thu, 16 Jul 2015 23:05:59 GMT',
  3261. 'client-peer' => '192.168.122.217:80',
  3262. 'content-length' => '1613',
  3263. '::std_case' => {
  3264. 'client-date' => 'Client-Date',
  3265. 'x-powered-by' => 'X-Powered-By',
  3266. 'client-response-num' => 'Client-Response-Num',
  3267. 'client-peer' => 'Client-Peer'
  3268. },
  3269. 'client-date' => 'Thu, 16 Jul 2015 23:05:59 GMT',
  3270. 'content-type' => 'application/json; charset=utf-8',
  3271. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3272. }, 'HTTP::Headers' );
  3273. $VAR5 = '[{"id":587,"case_id":14,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockme.test","type_id":1,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":588,"case_id":15,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmetoo.test","type_id":1,"priority_id":2,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":590,"case_id":16,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmealso.test","type_id":1,"priority_id":5,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":591,"case_id":17,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"sortalockme.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":592,"case_id":18,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_nothere.test","type_id":1,"priority_id":3,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":593,"case_id":19,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_alsonothere.test","type_id":6,"priority_id":1,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  3274. my $cloned = clone $mockObject;
  3275. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3276. return $cloned;
  3277. }
  3278. sub lockMockStep6 {
  3279. $VAR1 = 'index.php?/api/v2/get_tests/1099';
  3280. $VAR2 = '200';
  3281. $VAR3 = 'OK';
  3282. $VAR4 = bless( {
  3283. 'connection' => 'close',
  3284. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3285. 'client-response-num' => 1,
  3286. 'date' => 'Thu, 16 Jul 2015 23:06:00 GMT',
  3287. 'client-peer' => '192.168.122.217:80',
  3288. 'content-length' => '1613',
  3289. '::std_case' => {
  3290. 'client-date' => 'Client-Date',
  3291. 'x-powered-by' => 'X-Powered-By',
  3292. 'client-response-num' => 'Client-Response-Num',
  3293. 'client-peer' => 'Client-Peer'
  3294. },
  3295. 'client-date' => 'Thu, 16 Jul 2015 23:06:00 GMT',
  3296. 'content-type' => 'application/json; charset=utf-8',
  3297. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3298. }, 'HTTP::Headers' );
  3299. $VAR5 = '[{"id":587,"case_id":14,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockme.test","type_id":1,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":588,"case_id":15,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmetoo.test","type_id":1,"priority_id":2,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":590,"case_id":16,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmealso.test","type_id":1,"priority_id":5,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":591,"case_id":17,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"sortalockme.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":592,"case_id":18,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_nothere.test","type_id":1,"priority_id":3,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":593,"case_id":19,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_alsonothere.test","type_id":6,"priority_id":1,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  3300. my $cloned = clone $mockObject;
  3301. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3302. return $cloned;
  3303. }
  3304. sub lockMockStep7 {
  3305. $VAR1 = 'index.php?/api/v2/get_tests/1099';
  3306. $VAR2 = '200';
  3307. $VAR3 = 'OK';
  3308. $VAR4 = bless( {
  3309. 'connection' => 'close',
  3310. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3311. 'client-response-num' => 1,
  3312. 'date' => 'Thu, 16 Jul 2015 23:06:01 GMT',
  3313. 'client-peer' => '192.168.122.217:80',
  3314. 'content-length' => '1613',
  3315. '::std_case' => {
  3316. 'client-date' => 'Client-Date',
  3317. 'x-powered-by' => 'X-Powered-By',
  3318. 'client-response-num' => 'Client-Response-Num',
  3319. 'client-peer' => 'Client-Peer'
  3320. },
  3321. 'client-date' => 'Thu, 16 Jul 2015 23:06:01 GMT',
  3322. 'content-type' => 'application/json; charset=utf-8',
  3323. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3324. }, 'HTTP::Headers' );
  3325. $VAR5 = '[{"id":587,"case_id":14,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockme.test","type_id":1,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":588,"case_id":15,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmetoo.test","type_id":1,"priority_id":2,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":590,"case_id":16,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmealso.test","type_id":1,"priority_id":5,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":591,"case_id":17,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"sortalockme.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":592,"case_id":18,"status_id":4,"assignedto_id":null,"run_id":1099,"title":"dontlockme_nothere.test","type_id":1,"priority_id":3,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":593,"case_id":19,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"dontlockme_alsonothere.test","type_id":6,"priority_id":1,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  3326. my $cloned = clone $mockObject;
  3327. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3328. return $cloned;
  3329. }
  3330. sub lockMockStep8 {
  3331. $VAR1 = 'index.php?/api/v2/get_tests/1099';
  3332. $VAR2 = '200';
  3333. $VAR3 = 'OK';
  3334. $VAR4 = bless( {
  3335. 'connection' => 'close',
  3336. 'x-powered-by' => 'PHP/5.5.9-1ubuntu4.9',
  3337. 'client-response-num' => 1,
  3338. 'date' => 'Thu, 16 Jul 2015 23:06:02 GMT',
  3339. 'client-peer' => '192.168.122.217:80',
  3340. 'content-length' => '1613',
  3341. '::std_case' => {
  3342. 'client-date' => 'Client-Date',
  3343. 'x-powered-by' => 'X-Powered-By',
  3344. 'client-response-num' => 'Client-Response-Num',
  3345. 'client-peer' => 'Client-Peer'
  3346. },
  3347. 'client-date' => 'Thu, 16 Jul 2015 23:06:02 GMT',
  3348. 'content-type' => 'application/json; charset=utf-8',
  3349. 'server' => 'Apache/2.4.7 (Ubuntu)'
  3350. }, 'HTTP::Headers' );
  3351. $VAR5 = '[{"id":587,"case_id":14,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockme.test","type_id":1,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":588,"case_id":15,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmetoo.test","type_id":1,"priority_id":2,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":590,"case_id":16,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"lockmealso.test","type_id":1,"priority_id":5,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":591,"case_id":17,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"sortalockme.test","type_id":6,"priority_id":4,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":592,"case_id":18,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"dontlockme_nothere.test","type_id":1,"priority_id":3,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null},{"id":593,"case_id":19,"status_id":9,"assignedto_id":null,"run_id":1099,"title":"dontlockme_alsonothere.test","type_id":6,"priority_id":1,"estimate":null,"estimate_forecast":null,"refs":null,"milestone_id":null,"custom_preconds":null,"custom_steps":null,"custom_expected":null}]';
  3352. my $cloned = clone $mockObject;
  3353. $cloned->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3354. return $cloned;
  3355. }
  3356. {
  3357. $VAR1 = 'index.php?/api/v2/update_case/8';
  3358. $VAR2 = '200';
  3359. $VAR3 = 'OK';
  3360. $VAR4 = bless( {
  3361. 'client-date' => 'Sun, 30 Aug 2015 18:25:10 GMT',
  3362. '::std_case' => {
  3363. 'client-date' => 'Client-Date'
  3364. }
  3365. }, 'HTTP::Headers' );
  3366. $VAR5 = '{"id":8,"title":"STROGGIFY POPULATION CENTERS","section_id":9,"type_id":6,"priority_id":4,"milestone_id":null,"refs":null,"created_by":1,"created_on":1419364929,"updated_by":1,"updated_on":1419364929,"estimate":null,"estimate_forecast":null,"suite_id":9,"custom_preconds":"do some stuff","custom_steps":null,"custom_expected":null}';
  3367. $mockObject->map_response(qr/\Q$VAR1\E$/,HTTP::Response->new($VAR2, $VAR3, $VAR4, $VAR5));
  3368. }
  3369. 1;