3v4l.org

run code in 300+ PHP versions simultaneously
<?php $foo = array(); function slow($foo) { // Slower if (isset($foo) && is_array($foo)) { return true; } } function fast($foo) { // Faster if (isset($foo)) { if (is_array($foo)) { return true; } } } function benchmark($callback, $times) { echo "Testing $callback - Valid\n"; $s = microtime(true); for ($i = 0; $i < $times; $i++) { $callback(array(1, 2, 3)); } $e = microtime(true); echo "Completed in " . ($e - $s) . " Seconds\n"; echo "Testing $callback - Invalid\n"; $s = microtime(true); for ($i = 0; $i < $times; $i++) { $callback("string"); } $e = microtime(true); echo "Completed in " . ($e - $s) . " Seconds\n"; echo "Testing $callback - null\n"; $s = microtime(true); for ($i = 0; $i < $times; $i++) { $callback(null); } $e = microtime(true); echo "Completed in " . ($e - $s) . " Seconds\n"; } benchmark("slow", 1000); benchmark("fast", 1000);
Output for 7.3.1
Testing slow - Valid Completed in 0.00010299682617188 Seconds Testing slow - Invalid Completed in 8.5830688476562E-5 Seconds Testing slow - null Completed in 7.5817108154297E-5 Seconds Testing fast - Valid Completed in 7.0095062255859E-5 Seconds Testing fast - Invalid Completed in 6.8187713623047E-5 Seconds Testing fast - null Completed in 6.413459777832E-5 Seconds
Output for 7.3.0
Testing slow - Valid Completed in 7.7962875366211E-5 Seconds Testing slow - Invalid Completed in 7.1048736572266E-5 Seconds Testing slow - null Completed in 8.6069107055664E-5 Seconds Testing fast - Valid Completed in 5.793571472168E-5 Seconds Testing fast - Invalid Completed in 5.6028366088867E-5 Seconds Testing fast - null Completed in 5.2928924560547E-5 Seconds
Output for 7.2.13
Testing slow - Valid Completed in 0.025686979293823 Seconds Testing slow - Invalid Completed in 0.00011491775512695 Seconds Testing slow - null Completed in 0.00010085105895996 Seconds Testing fast - Valid Completed in 9.608268737793E-5 Seconds Testing fast - Invalid Completed in 9.3936920166016E-5 Seconds Testing fast - null Completed in 8.702278137207E-5 Seconds
Output for 7.2.12
Testing slow - Valid Completed in 0.00025010108947754 Seconds Testing slow - Invalid Completed in 0.00013613700866699 Seconds Testing slow - null Completed in 0.00011110305786133 Seconds Testing fast - Valid Completed in 9.0122222900391E-5 Seconds Testing fast - Invalid Completed in 0.00011587142944336 Seconds Testing fast - null Completed in 8.082389831543E-5 Seconds
Output for 7.2.11
Testing slow - Valid Completed in 0.00015401840209961 Seconds Testing slow - Invalid Completed in 0.00015902519226074 Seconds Testing slow - null Completed in 0.00011491775512695 Seconds Testing fast - Valid Completed in 0.00010895729064941 Seconds Testing fast - Invalid Completed in 0.0001070499420166 Seconds Testing fast - null Completed in 9.8943710327148E-5 Seconds
Output for 7.2.10
Testing slow - Valid Completed in 0.00014114379882812 Seconds Testing slow - Invalid Completed in 0.00011014938354492 Seconds Testing slow - null Completed in 0.00011205673217773 Seconds Testing fast - Valid Completed in 0.00014495849609375 Seconds Testing fast - Invalid Completed in 0.00014305114746094 Seconds Testing fast - null Completed in 0.00010395050048828 Seconds
Output for 7.2.9
Testing slow - Valid Completed in 0.00012302398681641 Seconds Testing slow - Invalid Completed in 0.0001060962677002 Seconds Testing slow - null Completed in 7.7009201049805E-5 Seconds Testing fast - Valid Completed in 7.2956085205078E-5 Seconds Testing fast - Invalid Completed in 8.7976455688477E-5 Seconds Testing fast - null Completed in 7.4863433837891E-5 Seconds
Output for 7.2.8
Testing slow - Valid Completed in 0.00015497207641602 Seconds Testing slow - Invalid Completed in 0.00012111663818359 Seconds Testing slow - null Completed in 0.0001060962677002 Seconds Testing fast - Valid Completed in 0.00010108947753906 Seconds Testing fast - Invalid Completed in 0.00010919570922852 Seconds Testing fast - null Completed in 9.1791152954102E-5 Seconds
Output for 7.2.7
Testing slow - Valid Completed in 0.00010514259338379 Seconds Testing slow - Invalid Completed in 8.392333984375E-5 Seconds Testing slow - null Completed in 0.0001070499420166 Seconds Testing fast - Valid Completed in 0.00012421607971191 Seconds Testing fast - Invalid Completed in 8.2969665527344E-5 Seconds Testing fast - null Completed in 6.2942504882812E-5 Seconds
Output for 7.2.6
Testing slow - Valid Completed in 0.034625053405762 Seconds Testing slow - Invalid Completed in 0.00017714500427246 Seconds Testing slow - null Completed in 0.00014114379882812 Seconds Testing fast - Valid Completed in 0.00020003318786621 Seconds Testing fast - Invalid Completed in 0.00020098686218262 Seconds Testing fast - null Completed in 0.00018000602722168 Seconds
Output for 7.2.5
Testing slow - Valid Completed in 0.050524950027466 Seconds Testing slow - Invalid Completed in 0.00014185905456543 Seconds Testing slow - null Completed in 0.0001521110534668 Seconds Testing fast - Valid Completed in 0.0001978874206543 Seconds Testing fast - Invalid Completed in 0.00021505355834961 Seconds Testing fast - null Completed in 0.00016880035400391 Seconds
Output for 7.2.4
Testing slow - Valid Completed in 0.00011610984802246 Seconds Testing slow - Invalid Completed in 0.00010895729064941 Seconds Testing slow - null Completed in 8.392333984375E-5 Seconds Testing fast - Valid Completed in 8.1062316894531E-5 Seconds Testing fast - Invalid Completed in 7.7962875366211E-5 Seconds Testing fast - null Completed in 7.2956085205078E-5 Seconds
Output for 7.2.3
Testing slow - Valid Completed in 0.00010895729064941 Seconds Testing slow - Invalid Completed in 8.6069107055664E-5 Seconds Testing slow - null Completed in 7.2956085205078E-5 Seconds Testing fast - Valid Completed in 7.1048736572266E-5 Seconds Testing fast - Invalid Completed in 6.8187713623047E-5 Seconds Testing fast - null Completed in 6.1988830566406E-5 Seconds
Output for 7.2.2
Testing slow - Valid Completed in 0.00012493133544922 Seconds Testing slow - Invalid Completed in 9.2029571533203E-5 Seconds Testing slow - null Completed in 8.4161758422852E-5 Seconds Testing fast - Valid Completed in 7.7009201049805E-5 Seconds Testing fast - Invalid Completed in 7.5817108154297E-5 Seconds Testing fast - null Completed in 7.0095062255859E-5 Seconds
Output for 7.2.1
Testing slow - Valid Completed in 9.4890594482422E-5 Seconds Testing slow - Invalid Completed in 8.0108642578125E-5 Seconds Testing slow - null Completed in 7.0095062255859E-5 Seconds Testing fast - Valid Completed in 6.6995620727539E-5 Seconds Testing fast - Invalid Completed in 6.4849853515625E-5 Seconds Testing fast - null Completed in 7.9154968261719E-5 Seconds
Output for 7.2.0
Testing slow - Valid Completed in 0.037346124649048 Seconds Testing slow - Invalid Completed in 0.00013208389282227 Seconds Testing slow - null Completed in 0.00011610984802246 Seconds Testing fast - Valid Completed in 0.00011014938354492 Seconds Testing fast - Invalid Completed in 0.00011992454528809 Seconds Testing fast - null Completed in 9.9897384643555E-5 Seconds
Output for 7.1.25
Testing slow - Valid Completed in 0.0001530647277832 Seconds Testing slow - Invalid Completed in 0.00014805793762207 Seconds Testing slow - null Completed in 0.00012588500976562 Seconds Testing fast - Valid Completed in 0.00011587142944336 Seconds Testing fast - Invalid Completed in 0.00011610984802246 Seconds Testing fast - null Completed in 0.00013613700866699 Seconds
Output for 7.1.7
Testing slow - Valid Completed in 0.00010013580322266 Seconds Testing slow - Invalid Completed in 8.082389831543E-5 Seconds Testing slow - null Completed in 6.9141387939453E-5 Seconds Testing fast - Valid Completed in 6.6041946411133E-5 Seconds Testing fast - Invalid Completed in 6.6041946411133E-5 Seconds Testing fast - null Completed in 6.103515625E-5 Seconds
Output for 7.1.6
Testing slow - Valid Completed in 0.00014996528625488 Seconds Testing slow - Invalid Completed in 0.00019502639770508 Seconds Testing slow - null Completed in 0.00012397766113281 Seconds Testing fast - Valid Completed in 0.00012803077697754 Seconds Testing fast - Invalid Completed in 0.00011301040649414 Seconds Testing fast - null Completed in 0.00010204315185547 Seconds
Output for 7.1.5
Testing slow - Valid Completed in 0.00013303756713867 Seconds Testing slow - Invalid Completed in 0.00012803077697754 Seconds Testing slow - null Completed in 0.0001380443572998 Seconds Testing fast - Valid Completed in 0.00011920928955078 Seconds Testing fast - Invalid Completed in 0.00010800361633301 Seconds Testing fast - null Completed in 9.7036361694336E-5 Seconds
Output for 7.1.0
Testing slow - Valid Completed in 9.8943710327148E-5 Seconds Testing slow - Invalid Completed in 9.0837478637695E-5 Seconds Testing slow - null Completed in 8.1062316894531E-5 Seconds Testing fast - Valid Completed in 7.7962875366211E-5 Seconds Testing fast - Invalid Completed in 7.3909759521484E-5 Seconds Testing fast - null Completed in 7.1048736572266E-5 Seconds
Output for 7.0.20
Testing slow - Valid Completed in 0.00026798248291016 Seconds Testing slow - Invalid Completed in 0.00014710426330566 Seconds Testing slow - null Completed in 5.7220458984375E-5 Seconds Testing fast - Valid Completed in 0.00017786026000977 Seconds Testing fast - Invalid Completed in 9.4175338745117E-5 Seconds Testing fast - null Completed in 8.1062316894531E-5 Seconds
Output for 7.0.14
Testing slow - Valid Completed in 0.00018215179443359 Seconds Testing slow - Invalid Completed in 0.0001220703125 Seconds Testing slow - null Completed in 0.00010490417480469 Seconds Testing fast - Valid Completed in 0.00015902519226074 Seconds Testing fast - Invalid Completed in 0.00010514259338379 Seconds Testing fast - null Completed in 9.7990036010742E-5 Seconds
Output for 7.0.6
Testing slow - Valid Completed in 0.00010490417480469 Seconds Testing slow - Invalid Completed in 6.5088272094727E-5 Seconds Testing slow - null Completed in 5.6982040405273E-5 Seconds Testing fast - Valid Completed in 9.2029571533203E-5 Seconds Testing fast - Invalid Completed in 5.5074691772461E-5 Seconds Testing fast - null Completed in 5.1021575927734E-5 Seconds
Output for 7.0.5
Testing slow - Valid Completed in 0.00015616416931152 Seconds Testing slow - Invalid Completed in 8.8930130004883E-5 Seconds Testing slow - null Completed in 8.0108642578125E-5 Seconds Testing fast - Valid Completed in 0.00013089179992676 Seconds Testing fast - Invalid Completed in 7.7009201049805E-5 Seconds Testing fast - null Completed in 7.2002410888672E-5 Seconds
Output for 7.0.4
Testing slow - Valid Completed in 0.00012898445129395 Seconds Testing slow - Invalid Completed in 8.2015991210938E-5 Seconds Testing slow - null Completed in 6.8902969360352E-5 Seconds Testing fast - Valid Completed in 0.00011396408081055 Seconds Testing fast - Invalid Completed in 6.7949295043945E-5 Seconds Testing fast - null Completed in 6.1988830566406E-5 Seconds
Output for 7.0.3
Testing slow - Valid Completed in 8.4877014160156E-5 Seconds Testing slow - Invalid Completed in 5.1975250244141E-5 Seconds Testing slow - null Completed in 4.5061111450195E-5 Seconds Testing fast - Valid Completed in 7.2002410888672E-5 Seconds Testing fast - Invalid Completed in 7.2002410888672E-5 Seconds Testing fast - null Completed in 8.1062316894531E-5 Seconds
Output for 7.0.2
Testing slow - Valid Completed in 0.0001380443572998 Seconds Testing slow - Invalid Completed in 7.8916549682617E-5 Seconds Testing slow - null Completed in 6.6041946411133E-5 Seconds Testing fast - Valid Completed in 0.0001070499420166 Seconds Testing fast - Invalid Completed in 6.5088272094727E-5 Seconds Testing fast - null Completed in 5.9127807617188E-5 Seconds
Output for 7.0.1
Testing slow - Valid Completed in 9.5844268798828E-5 Seconds Testing slow - Invalid Completed in 5.8174133300781E-5 Seconds Testing slow - null Completed in 5.0067901611328E-5 Seconds Testing fast - Valid Completed in 7.6055526733398E-5 Seconds Testing fast - Invalid Completed in 4.7922134399414E-5 Seconds Testing fast - null Completed in 4.6014785766602E-5 Seconds
Output for 7.0.0
Testing slow - Valid Completed in 8.0108642578125E-5 Seconds Testing slow - Invalid Completed in 5.0067901611328E-5 Seconds Testing slow - null Completed in 4.3153762817383E-5 Seconds Testing fast - Valid Completed in 7.0095062255859E-5 Seconds Testing fast - Invalid Completed in 4.1961669921875E-5 Seconds Testing fast - null Completed in 4.1007995605469E-5 Seconds
Output for 5.6.28
Testing slow - Valid Completed in 0.00064516067504883 Seconds Testing slow - Invalid Completed in 0.00034022331237793 Seconds Testing slow - null Completed in 0.00021600723266602 Seconds Testing fast - Valid Completed in 0.00061392784118652 Seconds Testing fast - Invalid Completed in 0.00033307075500488 Seconds Testing fast - null Completed in 0.00020790100097656 Seconds
Output for 5.6.21
Testing slow - Valid Completed in 0.00070500373840332 Seconds Testing slow - Invalid Completed in 0.00044798851013184 Seconds Testing slow - null Completed in 0.00030612945556641 Seconds Testing fast - Valid Completed in 0.00066709518432617 Seconds Testing fast - Invalid Completed in 0.00042104721069336 Seconds Testing fast - null Completed in 0.00032401084899902 Seconds
Output for 5.6.20
Testing slow - Valid Completed in 0.00037884712219238 Seconds Testing slow - Invalid Completed in 0.00023984909057617 Seconds Testing slow - null Completed in 0.00017309188842773 Seconds Testing fast - Valid Completed in 0.00037097930908203 Seconds Testing fast - Invalid Completed in 0.00025486946105957 Seconds Testing fast - null Completed in 0.0001680850982666 Seconds
Output for 5.6.19
Testing slow - Valid Completed in 0.00042986869812012 Seconds Testing slow - Invalid Completed in 0.00023818016052246 Seconds Testing slow - null Completed in 0.00015020370483398 Seconds Testing fast - Valid Completed in 0.00040316581726074 Seconds Testing fast - Invalid Completed in 0.0002291202545166 Seconds Testing fast - null Completed in 0.00014305114746094 Seconds
Output for 5.6.18
Testing slow - Valid Completed in 0.00033998489379883 Seconds Testing slow - Invalid Completed in 0.00018906593322754 Seconds Testing slow - null Completed in 0.00012397766113281 Seconds Testing fast - Valid Completed in 0.00033116340637207 Seconds Testing fast - Invalid Completed in 0.00018596649169922 Seconds Testing fast - null Completed in 0.00011897087097168 Seconds
Output for 5.6.17
Testing slow - Valid Completed in 0.00060701370239258 Seconds Testing slow - Invalid Completed in 0.00040292739868164 Seconds Testing slow - null Completed in 0.00017309188842773 Seconds Testing fast - Valid Completed in 0.00049781799316406 Seconds Testing fast - Invalid Completed in 0.00023412704467773 Seconds Testing fast - null Completed in 0.00019311904907227 Seconds
Output for 5.6.16
Testing slow - Valid Completed in 0.00054287910461426 Seconds Testing slow - Invalid Completed in 0.00034713745117188 Seconds Testing slow - null Completed in 0.00025081634521484 Seconds Testing fast - Valid Completed in 0.00053119659423828 Seconds Testing fast - Invalid Completed in 0.00034499168395996 Seconds Testing fast - null Completed in 0.00024700164794922 Seconds
Output for 5.6.15
Testing slow - Valid Completed in 0.00061821937561035 Seconds Testing slow - Invalid Completed in 0.00038480758666992 Seconds Testing slow - null Completed in 0.00028896331787109 Seconds Testing fast - Valid Completed in 0.00059914588928223 Seconds Testing fast - Invalid Completed in 0.0003809928894043 Seconds Testing fast - null Completed in 0.00026202201843262 Seconds
Output for 5.6.14
Testing slow - Valid Completed in 0.00037193298339844 Seconds Testing slow - Invalid Completed in 0.00023007392883301 Seconds Testing slow - null Completed in 0.0001678466796875 Seconds Testing fast - Valid Completed in 0.00036191940307617 Seconds Testing fast - Invalid Completed in 0.00022792816162109 Seconds Testing fast - null Completed in 0.00016403198242188 Seconds
Output for 5.6.13
Testing slow - Valid Completed in 0.00054621696472168 Seconds Testing slow - Invalid Completed in 0.00034499168395996 Seconds Testing slow - null Completed in 0.00025510787963867 Seconds Testing fast - Valid Completed in 0.00054383277893066 Seconds Testing fast - Invalid Completed in 0.00034213066101074 Seconds Testing fast - null Completed in 0.00024795532226562 Seconds
Output for 5.6.12
Testing slow - Valid Completed in 0.00037693977355957 Seconds Testing slow - Invalid Completed in 0.00023698806762695 Seconds Testing slow - null Completed in 0.00017285346984863 Seconds Testing fast - Valid Completed in 0.00037002563476562 Seconds Testing fast - Invalid Completed in 0.00023388862609863 Seconds Testing fast - null Completed in 0.00017404556274414 Seconds
Output for 5.6.11
Testing slow - Valid Completed in 0.00063681602478027 Seconds Testing slow - Invalid Completed in 0.00037002563476562 Seconds Testing slow - null Completed in 0.00025105476379395 Seconds Testing fast - Valid Completed in 0.0007789134979248 Seconds Testing fast - Invalid Completed in 0.00044703483581543 Seconds Testing fast - null Completed in 0.00028610229492188 Seconds
Output for 5.6.10
Testing slow - Valid Completed in 0.00067400932312012 Seconds Testing slow - Invalid Completed in 0.00040984153747559 Seconds Testing slow - null Completed in 0.00029611587524414 Seconds Testing fast - Valid Completed in 0.00063109397888184 Seconds Testing fast - Invalid Completed in 0.00040411949157715 Seconds Testing fast - null Completed in 0.00028395652770996 Seconds
Output for 5.6.9
Testing slow - Valid Completed in 0.00059199333190918 Seconds Testing slow - Invalid Completed in 0.00037908554077148 Seconds Testing slow - null Completed in 0.0002739429473877 Seconds Testing fast - Valid Completed in 0.00057196617126465 Seconds Testing fast - Invalid Completed in 0.00039792060852051 Seconds Testing fast - null Completed in 0.00025701522827148 Seconds
Output for 5.6.8
Testing slow - Valid Completed in 0.00060606002807617 Seconds Testing slow - Invalid Completed in 0.0003819465637207 Seconds Testing slow - null Completed in 0.00029802322387695 Seconds Testing fast - Valid Completed in 0.00060701370239258 Seconds Testing fast - Invalid Completed in 0.00039792060852051 Seconds Testing fast - null Completed in 0.00031900405883789 Seconds
Output for 5.5.35
Testing slow - Valid Completed in 0.00061488151550293 Seconds Testing slow - Invalid Completed in 0.00039410591125488 Seconds Testing slow - null Completed in 0.00025510787963867 Seconds Testing fast - Valid Completed in 0.00055885314941406 Seconds Testing fast - Invalid Completed in 0.00036001205444336 Seconds Testing fast - null Completed in 0.00028681755065918 Seconds
Output for 5.5.34
Testing slow - Valid Completed in 0.00039315223693848 Seconds Testing slow - Invalid Completed in 0.000244140625 Seconds Testing slow - null Completed in 0.00018405914306641 Seconds Testing fast - Valid Completed in 0.00038981437683105 Seconds Testing fast - Invalid Completed in 0.00025415420532227 Seconds Testing fast - null Completed in 0.00018095970153809 Seconds
Output for 5.5.33
Testing slow - Valid Completed in 0.00036501884460449 Seconds Testing slow - Invalid Completed in 0.00019502639770508 Seconds Testing slow - null Completed in 0.00012087821960449 Seconds Testing fast - Valid Completed in 0.00035500526428223 Seconds Testing fast - Invalid Completed in 0.00019097328186035 Seconds Testing fast - null Completed in 0.00011706352233887 Seconds
Output for 5.5.32
Testing slow - Valid Completed in 0.00065302848815918 Seconds Testing slow - Invalid Completed in 0.00035190582275391 Seconds Testing slow - null Completed in 0.00024795532226562 Seconds Testing fast - Valid Completed in 0.00056910514831543 Seconds Testing fast - Invalid Completed in 0.00034308433532715 Seconds Testing fast - null Completed in 0.00024294853210449 Seconds
Output for 5.5.31
Testing slow - Valid Completed in 0.0005500316619873 Seconds Testing slow - Invalid Completed in 0.00034809112548828 Seconds Testing slow - null Completed in 0.0002448558807373 Seconds Testing fast - Valid Completed in 0.00053596496582031 Seconds Testing fast - Invalid Completed in 0.00034189224243164 Seconds Testing fast - null Completed in 0.00023794174194336 Seconds
Output for 5.5.30
Testing slow - Valid Completed in 0.00050210952758789 Seconds Testing slow - Invalid Completed in 0.00031900405883789 Seconds Testing slow - null Completed in 0.00023794174194336 Seconds Testing fast - Valid Completed in 0.0005180835723877 Seconds Testing fast - Invalid Completed in 0.00032997131347656 Seconds Testing fast - null Completed in 0.00023198127746582 Seconds
Output for 5.5.29
Testing slow - Valid Completed in 0.00066399574279785 Seconds Testing slow - Invalid Completed in 0.00042009353637695 Seconds Testing slow - null Completed in 0.00028586387634277 Seconds Testing fast - Valid Completed in 0.00061607360839844 Seconds Testing fast - Invalid Completed in 0.00040006637573242 Seconds Testing fast - null Completed in 0.00027894973754883 Seconds
Output for 5.5.28
Testing slow - Valid Completed in 0.00061202049255371 Seconds Testing slow - Invalid Completed in 0.00038003921508789 Seconds Testing slow - null Completed in 0.00026488304138184 Seconds Testing fast - Valid Completed in 0.00058698654174805 Seconds Testing fast - Invalid Completed in 0.00037503242492676 Seconds Testing fast - null Completed in 0.00026917457580566 Seconds
Output for 5.5.27
Testing slow - Valid Completed in 0.00047993659973145 Seconds Testing slow - Invalid Completed in 0.00028681755065918 Seconds Testing slow - null Completed in 0.00020289421081543 Seconds Testing fast - Valid Completed in 0.00046801567077637 Seconds Testing fast - Invalid Completed in 0.00028181076049805 Seconds Testing fast - null Completed in 0.00020098686218262 Seconds
Output for 5.5.26
Testing slow - Valid Completed in 0.00058817863464355 Seconds Testing slow - Invalid Completed in 0.00036787986755371 Seconds Testing slow - null Completed in 0.00027203559875488 Seconds Testing fast - Valid Completed in 0.00056695938110352 Seconds Testing fast - Invalid Completed in 0.00037717819213867 Seconds Testing fast - null Completed in 0.00026679039001465 Seconds
Output for 5.5.25
Testing slow - Valid Completed in 0.00053691864013672 Seconds Testing slow - Invalid Completed in 0.00034618377685547 Seconds Testing slow - null Completed in 0.00025820732116699 Seconds Testing fast - Valid Completed in 0.00053882598876953 Seconds Testing fast - Invalid Completed in 0.00035810470581055 Seconds Testing fast - null Completed in 0.00025200843811035 Seconds
Output for 5.5.24
Testing slow - Valid Completed in 0.0006248950958252 Seconds Testing slow - Invalid Completed in 0.00037884712219238 Seconds Testing slow - null Completed in 0.00026798248291016 Seconds Testing fast - Valid Completed in 0.00063800811767578 Seconds Testing fast - Invalid Completed in 0.00037097930908203 Seconds Testing fast - null Completed in 0.00025796890258789 Seconds
Output for 5.4.45
Testing slow - Valid Completed in 0.00049614906311035 Seconds Testing slow - Invalid Completed in 0.00027894973754883 Seconds Testing slow - null Completed in 0.00017094612121582 Seconds Testing fast - Valid Completed in 0.0004727840423584 Seconds Testing fast - Invalid Completed in 0.00030207633972168 Seconds Testing fast - null Completed in 0.00016498565673828 Seconds
Output for 5.4.44
Testing slow - Valid Completed in 0.00037407875061035 Seconds Testing slow - Invalid Completed in 0.0002131462097168 Seconds Testing slow - null Completed in 0.00012898445129395 Seconds Testing fast - Valid Completed in 0.00036406517028809 Seconds Testing fast - Invalid Completed in 0.00020909309387207 Seconds Testing fast - null Completed in 0.00012493133544922 Seconds
Output for 5.4.43
Testing slow - Valid Completed in 0.00052785873413086 Seconds Testing slow - Invalid Completed in 0.00031685829162598 Seconds Testing slow - null Completed in 0.00011610984802246 Seconds Testing fast - Valid Completed in 0.0003211498260498 Seconds Testing fast - Invalid Completed in 0.0003361701965332 Seconds Testing fast - null Completed in 0.00023603439331055 Seconds
Output for 5.4.42
Testing slow - Valid Completed in 0.00033116340637207 Seconds Testing slow - Invalid Completed in 0.00029516220092773 Seconds Testing slow - null Completed in 0.00024008750915527 Seconds Testing fast - Valid Completed in 0.00034785270690918 Seconds Testing fast - Invalid Completed in 0.00018215179443359 Seconds Testing fast - null Completed in 0.00015497207641602 Seconds
Output for 5.4.41
Testing slow - Valid Completed in 0.00032901763916016 Seconds Testing slow - Invalid Completed in 0.00018811225891113 Seconds Testing slow - null Completed in 0.00011801719665527 Seconds Testing fast - Valid Completed in 0.0003199577331543 Seconds Testing fast - Invalid Completed in 0.00018501281738281 Seconds Testing fast - null Completed in 0.00011396408081055 Seconds
Output for 5.4.40
Testing slow - Valid Completed in 0.00034213066101074 Seconds Testing slow - Invalid Completed in 0.00019598007202148 Seconds Testing slow - null Completed in 0.00011706352233887 Seconds Testing fast - Valid Completed in 0.00031518936157227 Seconds Testing fast - Invalid Completed in 0.00020289421081543 Seconds Testing fast - null Completed in 0.00011301040649414 Seconds
Output for 5.4.39
Testing slow - Valid Completed in 0.00040698051452637 Seconds Testing slow - Invalid Completed in 0.00018715858459473 Seconds Testing slow - null Completed in 0.00011396408081055 Seconds Testing fast - Valid Completed in 0.00033092498779297 Seconds Testing fast - Invalid Completed in 0.00019693374633789 Seconds Testing fast - null Completed in 0.00011801719665527 Seconds
Output for 5.4.38
Testing slow - Valid Completed in 0.00033998489379883 Seconds Testing slow - Invalid Completed in 0.0001978874206543 Seconds Testing slow - null Completed in 0.00011801719665527 Seconds Testing fast - Valid Completed in 0.00032210350036621 Seconds Testing fast - Invalid Completed in 0.00018501281738281 Seconds Testing fast - null Completed in 0.00011301040649414 Seconds
Output for 5.4.37
Testing slow - Valid Completed in 0.00034999847412109 Seconds Testing slow - Invalid Completed in 0.00018906593322754 Seconds Testing slow - null Completed in 0.00011515617370605 Seconds Testing fast - Valid Completed in 0.00034308433532715 Seconds Testing fast - Invalid Completed in 0.0001828670501709 Seconds Testing fast - null Completed in 0.00010895729064941 Seconds
Output for 5.4.36
Testing slow - Valid Completed in 0.00033187866210938 Seconds Testing slow - Invalid Completed in 0.00019192695617676 Seconds Testing slow - null Completed in 0.00011920928955078 Seconds Testing fast - Valid Completed in 0.00032496452331543 Seconds Testing fast - Invalid Completed in 0.0001988410949707 Seconds Testing fast - null Completed in 0.00011491775512695 Seconds
Output for 5.4.35
Testing slow - Valid Completed in 0.00034284591674805 Seconds Testing slow - Invalid Completed in 0.00029110908508301 Seconds Testing slow - null Completed in 0.00011396408081055 Seconds Testing fast - Valid Completed in 0.00034403800964355 Seconds Testing fast - Invalid Completed in 0.0002751350402832 Seconds Testing fast - null Completed in 0.00010895729064941 Seconds
Output for 5.4.34
Testing slow - Valid Completed in 0.00034403800964355 Seconds Testing slow - Invalid Completed in 0.00018882751464844 Seconds Testing slow - null Completed in 0.00011491775512695 Seconds Testing fast - Valid Completed in 0.00031805038452148 Seconds Testing fast - Invalid Completed in 0.0001828670501709 Seconds Testing fast - null Completed in 0.00011277198791504 Seconds
Output for 5.4.32
Testing slow - Valid Completed in 0.00049209594726562 Seconds Testing slow - Invalid Completed in 0.00025796890258789 Seconds Testing slow - null Completed in 0.00015783309936523 Seconds Testing fast - Valid Completed in 0.00045299530029297 Seconds Testing fast - Invalid Completed in 0.00025105476379395 Seconds Testing fast - null Completed in 0.0001521110534668 Seconds
Output for 5.4.31
Testing slow - Valid Completed in 0.00046801567077637 Seconds Testing slow - Invalid Completed in 0.00026607513427734 Seconds Testing slow - null Completed in 0.00016307830810547 Seconds Testing fast - Valid Completed in 0.00044798851013184 Seconds Testing fast - Invalid Completed in 0.00026178359985352 Seconds Testing fast - null Completed in 0.00015711784362793 Seconds
Output for 5.4.30
Testing slow - Valid Completed in 0.00045204162597656 Seconds Testing slow - Invalid Completed in 0.00025510787963867 Seconds Testing slow - null Completed in 0.00015592575073242 Seconds Testing fast - Valid Completed in 0.0004580020904541 Seconds Testing fast - Invalid Completed in 0.00025010108947754 Seconds Testing fast - null Completed in 0.00015115737915039 Seconds
Output for 5.4.29
Testing slow - Valid Completed in 0.00033807754516602 Seconds Testing slow - Invalid Completed in 0.00020098686218262 Seconds Testing slow - null Completed in 0.00011992454528809 Seconds Testing fast - Valid Completed in 0.00032806396484375 Seconds Testing fast - Invalid Completed in 0.00019311904907227 Seconds Testing fast - null Completed in 0.00011610984802246 Seconds
Output for 5.4.28
Testing slow - Valid Completed in 0.00054597854614258 Seconds Testing slow - Invalid Completed in 0.00035691261291504 Seconds Testing slow - null Completed in 0.00023293495178223 Seconds Testing fast - Valid Completed in 0.00058794021606445 Seconds Testing fast - Invalid Completed in 0.00032997131347656 Seconds Testing fast - null Completed in 0.00012803077697754 Seconds
Output for 5.4.27
Testing slow - Valid Completed in 0.00034308433532715 Seconds Testing slow - Invalid Completed in 0.00019502639770508 Seconds Testing slow - null Completed in 0.00011682510375977 Seconds Testing fast - Valid Completed in 0.00032496452331543 Seconds Testing fast - Invalid Completed in 0.00018978118896484 Seconds Testing fast - null Completed in 0.00011301040649414 Seconds
Output for 5.4.26
Testing slow - Valid Completed in 0.00048589706420898 Seconds Testing slow - Invalid Completed in 0.00027799606323242 Seconds Testing slow - null Completed in 0.00016999244689941 Seconds Testing fast - Valid Completed in 0.0004730224609375 Seconds Testing fast - Invalid Completed in 0.00028491020202637 Seconds Testing fast - null Completed in 0.00016403198242188 Seconds
Output for 5.4.25
Testing slow - Valid Completed in 0.00038719177246094 Seconds Testing slow - Invalid Completed in 0.00022292137145996 Seconds Testing slow - null Completed in 0.00013494491577148 Seconds Testing fast - Valid Completed in 0.00037288665771484 Seconds Testing fast - Invalid Completed in 0.00021791458129883 Seconds Testing fast - null Completed in 0.00012993812561035 Seconds
Output for 5.4.24
Testing slow - Valid Completed in 0.00047707557678223 Seconds Testing slow - Invalid Completed in 0.0002739429473877 Seconds Testing slow - null Completed in 0.00016498565673828 Seconds Testing fast - Valid Completed in 0.00045394897460938 Seconds Testing fast - Invalid Completed in 0.00026702880859375 Seconds Testing fast - null Completed in 0.00015902519226074 Seconds
Output for 5.4.23
Testing slow - Valid Completed in 0.00042104721069336 Seconds Testing slow - Invalid Completed in 0.00020599365234375 Seconds Testing slow - null Completed in 0.00012683868408203 Seconds Testing fast - Valid Completed in 0.00038695335388184 Seconds Testing fast - Invalid Completed in 0.00023984909057617 Seconds Testing fast - null Completed in 0.00011992454528809 Seconds
Output for 5.4.22
Testing slow - Valid Completed in 0.00034785270690918 Seconds Testing slow - Invalid Completed in 0.0001990795135498 Seconds Testing slow - null Completed in 0.00014090538024902 Seconds Testing fast - Valid Completed in 0.00035190582275391 Seconds Testing fast - Invalid Completed in 0.0002138614654541 Seconds Testing fast - null Completed in 0.00013589859008789 Seconds
Output for 5.4.21
Testing slow - Valid Completed in 0.00033998489379883 Seconds Testing slow - Invalid Completed in 0.00019502639770508 Seconds Testing slow - null Completed in 0.00011897087097168 Seconds Testing fast - Valid Completed in 0.00032997131347656 Seconds Testing fast - Invalid Completed in 0.00019097328186035 Seconds Testing fast - null Completed in 0.00011897087097168 Seconds
Output for 5.4.20
Testing slow - Valid Completed in 0.00034308433532715 Seconds Testing slow - Invalid Completed in 0.0001988410949707 Seconds Testing slow - null Completed in 0.00011897087097168 Seconds Testing fast - Valid Completed in 0.00033307075500488 Seconds Testing fast - Invalid Completed in 0.00019192695617676 Seconds Testing fast - null Completed in 0.00011396408081055 Seconds
Output for 5.4.19
Testing slow - Valid Completed in 0.00048089027404785 Seconds Testing slow - Invalid Completed in 0.00027894973754883 Seconds Testing slow - null Completed in 0.0001678466796875 Seconds Testing fast - Valid Completed in 0.00046896934509277 Seconds Testing fast - Invalid Completed in 0.00027203559875488 Seconds Testing fast - null Completed in 0.00016093254089355 Seconds
Output for 5.4.18
Testing slow - Valid Completed in 0.00053501129150391 Seconds Testing slow - Invalid Completed in 0.00026702880859375 Seconds Testing slow - null Completed in 0.00016188621520996 Seconds Testing fast - Valid Completed in 0.00045418739318848 Seconds Testing fast - Invalid Completed in 0.00026512145996094 Seconds Testing fast - null Completed in 0.00015687942504883 Seconds
Output for 5.4.17
Testing slow - Valid Completed in 0.00050497055053711 Seconds Testing slow - Invalid Completed in 0.00021100044250488 Seconds Testing slow - null Completed in 0.0001671314239502 Seconds Testing fast - Valid Completed in 0.00042891502380371 Seconds Testing fast - Invalid Completed in 0.00025415420532227 Seconds Testing fast - null Completed in 0.00015497207641602 Seconds
Output for 5.4.16
Testing slow - Valid Completed in 0.00049996376037598 Seconds Testing slow - Invalid Completed in 0.00028896331787109 Seconds Testing slow - null Completed in 0.00017595291137695 Seconds Testing fast - Valid Completed in 0.0004730224609375 Seconds Testing fast - Invalid Completed in 0.00027203559875488 Seconds Testing fast - null Completed in 0.00016880035400391 Seconds
Output for 5.4.15
Testing slow - Valid Completed in 0.00043511390686035 Seconds Testing slow - Invalid Completed in 0.00024795532226562 Seconds Testing slow - null Completed in 0.00015592575073242 Seconds Testing fast - Valid Completed in 0.00041389465332031 Seconds Testing fast - Invalid Completed in 0.00024199485778809 Seconds Testing fast - null Completed in 0.00014901161193848 Seconds
Output for 5.4.14
Testing slow - Valid Completed in 0.00046610832214355 Seconds Testing slow - Invalid Completed in 0.00026392936706543 Seconds Testing slow - null Completed in 0.00016212463378906 Seconds Testing fast - Valid Completed in 0.00045490264892578 Seconds Testing fast - Invalid Completed in 0.00026297569274902 Seconds Testing fast - null Completed in 0.00015592575073242 Seconds
Output for 5.4.13
Testing slow - Valid Completed in 0.00037002563476562 Seconds Testing slow - Invalid Completed in 0.00020599365234375 Seconds Testing slow - null Completed in 0.00013184547424316 Seconds Testing fast - Valid Completed in 0.00034117698669434 Seconds Testing fast - Invalid Completed in 0.00019693374633789 Seconds Testing fast - null Completed in 0.00012397766113281 Seconds
Output for 5.4.12
Testing slow - Valid Completed in 0.0003349781036377 Seconds Testing slow - Invalid Completed in 0.00019216537475586 Seconds Testing slow - null Completed in 0.00012302398681641 Seconds Testing fast - Valid Completed in 0.00032687187194824 Seconds Testing fast - Invalid Completed in 0.00019001960754395 Seconds Testing fast - null Completed in 0.00011706352233887 Seconds
Output for 5.4.11
Testing slow - Valid Completed in 0.0003669261932373 Seconds Testing slow - Invalid Completed in 0.00021004676818848 Seconds Testing slow - null Completed in 0.00012803077697754 Seconds Testing fast - Valid Completed in 0.00034403800964355 Seconds Testing fast - Invalid Completed in 0.0001990795135498 Seconds Testing fast - null Completed in 0.00012516975402832 Seconds
Output for 5.4.10
Testing slow - Valid Completed in 0.00035810470581055 Seconds Testing slow - Invalid Completed in 0.00020599365234375 Seconds Testing slow - null Completed in 0.00012707710266113 Seconds Testing fast - Valid Completed in 0.00043892860412598 Seconds Testing fast - Invalid Completed in 0.00020408630371094 Seconds Testing fast - null Completed in 0.00012302398681641 Seconds
Output for 5.4.9
Testing slow - Valid Completed in 0.00046396255493164 Seconds Testing slow - Invalid Completed in 0.00027108192443848 Seconds Testing slow - null Completed in 0.00016403198242188 Seconds Testing fast - Valid Completed in 0.00046491622924805 Seconds Testing fast - Invalid Completed in 0.00026297569274902 Seconds Testing fast - null Completed in 0.00015902519226074 Seconds
Output for 5.4.8
Testing slow - Valid Completed in 0.00033187866210938 Seconds Testing slow - Invalid Completed in 0.0001981258392334 Seconds Testing slow - null Completed in 0.00012016296386719 Seconds Testing fast - Valid Completed in 0.00032305717468262 Seconds Testing fast - Invalid Completed in 0.00019192695617676 Seconds Testing fast - null Completed in 0.00011587142944336 Seconds
Output for 5.4.7
Testing slow - Valid Completed in 0.00033998489379883 Seconds Testing slow - Invalid Completed in 0.00019502639770508 Seconds Testing slow - null Completed in 0.00011920928955078 Seconds Testing fast - Valid Completed in 0.00033307075500488 Seconds Testing fast - Invalid Completed in 0.00018906593322754 Seconds Testing fast - null Completed in 0.00011610984802246 Seconds
Output for 5.4.6
Testing slow - Valid Completed in 0.0003659725189209 Seconds Testing slow - Invalid Completed in 0.00021195411682129 Seconds Testing slow - null Completed in 0.00011897087097168 Seconds Testing fast - Valid Completed in 0.00035691261291504 Seconds Testing fast - Invalid Completed in 0.00019192695617676 Seconds Testing fast - null Completed in 0.00011277198791504 Seconds
Output for 5.4.5
Testing slow - Valid Completed in 0.00043201446533203 Seconds Testing slow - Invalid Completed in 0.00025010108947754 Seconds Testing slow - null Completed in 0.00017404556274414 Seconds Testing fast - Valid Completed in 0.00042891502380371 Seconds Testing fast - Invalid Completed in 0.00026082992553711 Seconds Testing fast - null Completed in 0.00016593933105469 Seconds
Output for 5.4.4
Testing slow - Valid Completed in 0.00057101249694824 Seconds Testing slow - Invalid Completed in 0.00035500526428223 Seconds Testing slow - null Completed in 0.00013399124145508 Seconds Testing fast - Valid Completed in 0.00052285194396973 Seconds Testing fast - Invalid Completed in 0.00023198127746582 Seconds Testing fast - null Completed in 0.00017809867858887 Seconds
Output for 5.4.3
Testing slow - Valid Completed in 0.00052809715270996 Seconds Testing slow - Invalid Completed in 0.00028586387634277 Seconds Testing slow - null Completed in 0.00020289421081543 Seconds Testing fast - Valid Completed in 0.00052595138549805 Seconds Testing fast - Invalid Completed in 0.00030112266540527 Seconds Testing fast - null Completed in 0.00019502639770508 Seconds
Output for 5.4.2
Testing slow - Valid Completed in 0.00039792060852051 Seconds Testing slow - Invalid Completed in 0.00022506713867188 Seconds Testing slow - null Completed in 0.0001380443572998 Seconds Testing fast - Valid Completed in 0.00037789344787598 Seconds Testing fast - Invalid Completed in 0.00021791458129883 Seconds Testing fast - null Completed in 0.00013208389282227 Seconds
Output for 5.4.1
Testing slow - Valid Completed in 0.0003960132598877 Seconds Testing slow - Invalid Completed in 0.00021696090698242 Seconds Testing slow - null Completed in 0.00013208389282227 Seconds Testing fast - Valid Completed in 0.0003809928894043 Seconds Testing fast - Invalid Completed in 0.00021505355834961 Seconds Testing fast - null Completed in 0.00012898445129395 Seconds
Output for 5.4.0
Testing slow - Valid Completed in 0.00046086311340332 Seconds Testing slow - Invalid Completed in 0.00026893615722656 Seconds Testing slow - null Completed in 0.00016593933105469 Seconds Testing fast - Valid Completed in 0.00044989585876465 Seconds Testing fast - Invalid Completed in 0.00026297569274902 Seconds Testing fast - null Completed in 0.00016498565673828 Seconds
Output for 5.3.29
Testing slow - Valid Completed in 0.00046014785766602 Seconds Testing slow - Invalid Completed in 0.00023603439331055 Seconds Testing slow - null Completed in 0.00013303756713867 Seconds Testing fast - Valid Completed in 0.00034999847412109 Seconds Testing fast - Invalid Completed in 0.00025010108947754 Seconds Testing fast - null Completed in 0.0001368522644043 Seconds
Output for 5.3.28
Testing slow - Valid Completed in 0.00049901008605957 Seconds Testing slow - Invalid Completed in 0.00032210350036621 Seconds Testing slow - null Completed in 0.0001828670501709 Seconds Testing fast - Valid Completed in 0.0004889965057373 Seconds Testing fast - Invalid Completed in 0.00032806396484375 Seconds Testing fast - null Completed in 0.00017189979553223 Seconds
Output for 5.3.27
Testing slow - Valid Completed in 0.00044798851013184 Seconds Testing slow - Invalid Completed in 0.00028800964355469 Seconds Testing slow - null Completed in 0.00016498565673828 Seconds Testing fast - Valid Completed in 0.00043606758117676 Seconds Testing fast - Invalid Completed in 0.0002892017364502 Seconds Testing fast - null Completed in 0.00016188621520996 Seconds
Output for 5.3.26
Testing slow - Valid Completed in 0.00039482116699219 Seconds Testing slow - Invalid Completed in 0.00025796890258789 Seconds Testing slow - null Completed in 0.00014781951904297 Seconds Testing fast - Valid Completed in 0.00038599967956543 Seconds Testing fast - Invalid Completed in 0.00025391578674316 Seconds Testing fast - null Completed in 0.00016903877258301 Seconds
Output for 5.3.25
Testing slow - Valid Completed in 0.00038385391235352 Seconds Testing slow - Invalid Completed in 0.0002591609954834 Seconds Testing slow - null Completed in 0.00017595291137695 Seconds Testing fast - Valid Completed in 0.00037598609924316 Seconds Testing fast - Invalid Completed in 0.00026512145996094 Seconds Testing fast - null Completed in 0.00016307830810547 Seconds
Output for 5.3.24
Testing slow - Valid Completed in 0.00052285194396973 Seconds Testing slow - Invalid Completed in 0.0003199577331543 Seconds Testing slow - null Completed in 0.00018501281738281 Seconds Testing fast - Valid Completed in 0.00048208236694336 Seconds Testing fast - Invalid Completed in 0.00031399726867676 Seconds Testing fast - null Completed in 0.00017905235290527 Seconds
Output for 5.3.23
Testing slow - Valid Completed in 0.00049710273742676 Seconds Testing slow - Invalid Completed in 0.0003211498260498 Seconds Testing slow - null Completed in 0.00018811225891113 Seconds Testing fast - Valid Completed in 0.00048494338989258 Seconds Testing fast - Invalid Completed in 0.00032281875610352 Seconds Testing fast - null Completed in 0.00018215179443359 Seconds
Output for 5.3.22
Testing slow - Valid Completed in 0.00051689147949219 Seconds Testing slow - Invalid Completed in 0.00032997131347656 Seconds Testing slow - null Completed in 0.00023698806762695 Seconds Testing fast - Valid Completed in 0.00051999092102051 Seconds Testing fast - Invalid Completed in 0.00034689903259277 Seconds Testing fast - null Completed in 0.00020408630371094 Seconds
Output for 5.3.21
Testing slow - Valid Completed in 0.00045895576477051 Seconds Testing slow - Invalid Completed in 0.00030207633972168 Seconds Testing slow - null Completed in 0.00017213821411133 Seconds Testing fast - Valid Completed in 0.00044107437133789 Seconds Testing fast - Invalid Completed in 0.00030398368835449 Seconds Testing fast - null Completed in 0.00016498565673828 Seconds
Output for 5.3.20
Testing slow - Valid Completed in 0.00036311149597168 Seconds Testing slow - Invalid Completed in 0.00025105476379395 Seconds Testing slow - null Completed in 0.00013613700866699 Seconds Testing fast - Valid Completed in 0.00035309791564941 Seconds Testing fast - Invalid Completed in 0.00024700164794922 Seconds Testing fast - null Completed in 0.00012993812561035 Seconds
Output for 5.3.19
Testing slow - Valid Completed in 0.00045585632324219 Seconds Testing slow - Invalid Completed in 0.00029778480529785 Seconds Testing slow - null Completed in 0.00016999244689941 Seconds Testing fast - Valid Completed in 0.0004429817199707 Seconds Testing fast - Invalid Completed in 0.0002899169921875 Seconds Testing fast - null Completed in 0.00016283988952637 Seconds
Output for 5.3.18
Testing slow - Valid Completed in 0.00050592422485352 Seconds Testing slow - Invalid Completed in 0.00031709671020508 Seconds Testing slow - null Completed in 0.00020289421081543 Seconds Testing fast - Valid Completed in 0.00047588348388672 Seconds Testing fast - Invalid Completed in 0.0003199577331543 Seconds Testing fast - null Completed in 0.00017404556274414 Seconds
Output for 5.3.17
Testing slow - Valid Completed in 0.00043797492980957 Seconds Testing slow - Invalid Completed in 0.00030112266540527 Seconds Testing slow - null Completed in 0.0001671314239502 Seconds Testing fast - Valid Completed in 0.00043582916259766 Seconds Testing fast - Invalid Completed in 0.00028014183044434 Seconds Testing fast - null Completed in 0.00017809867858887 Seconds
Output for 5.3.16
Testing slow - Valid Completed in 0.00035691261291504 Seconds Testing slow - Invalid Completed in 0.00024104118347168 Seconds Testing slow - null Completed in 0.00013589859008789 Seconds Testing fast - Valid Completed in 0.00034689903259277 Seconds Testing fast - Invalid Completed in 0.00023007392883301 Seconds Testing fast - null Completed in 0.00013017654418945 Seconds
Output for 5.3.15
Testing slow - Valid Completed in 0.00050902366638184 Seconds Testing slow - Invalid Completed in 0.00033092498779297 Seconds Testing slow - null Completed in 0.00018692016601562 Seconds Testing fast - Valid Completed in 0.00048208236694336 Seconds Testing fast - Invalid Completed in 0.00031709671020508 Seconds Testing fast - null Completed in 0.00018095970153809 Seconds
Output for 5.3.14
Testing slow - Valid Completed in 0.00052094459533691 Seconds Testing slow - Invalid Completed in 0.00034117698669434 Seconds Testing slow - null Completed in 0.00021505355834961 Seconds Testing fast - Valid Completed in 0.00051498413085938 Seconds Testing fast - Invalid Completed in 0.00032901763916016 Seconds Testing fast - null Completed in 0.00020503997802734 Seconds
Output for 5.3.13
Testing slow - Valid Completed in 0.00036096572875977 Seconds Testing slow - Invalid Completed in 0.00024986267089844 Seconds Testing slow - null Completed in 0.00014400482177734 Seconds Testing fast - Valid Completed in 0.00036287307739258 Seconds Testing fast - Invalid Completed in 0.00023698806762695 Seconds Testing fast - null Completed in 0.0001378059387207 Seconds
Output for 5.3.12
Testing slow - Valid Completed in 0.00037193298339844 Seconds Testing slow - Invalid Completed in 0.00024199485778809 Seconds Testing slow - null Completed in 0.00015997886657715 Seconds Testing fast - Valid Completed in 0.00037002563476562 Seconds Testing fast - Invalid Completed in 0.00025701522827148 Seconds Testing fast - null Completed in 0.0001518726348877 Seconds
Output for 5.3.11
Testing slow - Valid Completed in 0.00036001205444336 Seconds Testing slow - Invalid Completed in 0.00023484230041504 Seconds Testing slow - null Completed in 0.0001370906829834 Seconds Testing fast - Valid Completed in 0.00034904479980469 Seconds Testing fast - Invalid Completed in 0.00022983551025391 Seconds Testing fast - null Completed in 0.00013208389282227 Seconds
Output for 5.3.10
Testing slow - Valid Completed in 0.00041890144348145 Seconds Testing slow - Invalid Completed in 0.00027680397033691 Seconds Testing slow - null Completed in 0.00016188621520996 Seconds Testing fast - Valid Completed in 0.00040912628173828 Seconds Testing fast - Invalid Completed in 0.00032210350036621 Seconds Testing fast - null Completed in 0.00015401840209961 Seconds
Output for 5.3.9
Testing slow - Valid Completed in 0.00036096572875977 Seconds Testing slow - Invalid Completed in 0.00025081634521484 Seconds Testing slow - null Completed in 0.00013518333435059 Seconds Testing fast - Valid Completed in 0.00035309791564941 Seconds Testing fast - Invalid Completed in 0.00022602081298828 Seconds Testing fast - null Completed in 0.00012993812561035 Seconds
Output for 5.3.8
Testing slow - Valid Completed in 0.00037002563476562 Seconds Testing slow - Invalid Completed in 0.00023698806762695 Seconds Testing slow - null Completed in 0.00014901161193848 Seconds Testing fast - Valid Completed in 0.00036311149597168 Seconds Testing fast - Invalid Completed in 0.00024008750915527 Seconds Testing fast - null Completed in 0.00013399124145508 Seconds
Output for 5.3.7
Testing slow - Valid Completed in 0.00051379203796387 Seconds Testing slow - Invalid Completed in 0.00033187866210938 Seconds Testing slow - null Completed in 0.00019407272338867 Seconds Testing fast - Valid Completed in 0.00050497055053711 Seconds Testing fast - Invalid Completed in 0.00035619735717773 Seconds Testing fast - null Completed in 0.00018501281738281 Seconds
Output for 5.3.6
Testing slow - Valid Completed in 0.0004429817199707 Seconds Testing slow - Invalid Completed in 0.00028395652770996 Seconds Testing slow - null Completed in 0.00016403198242188 Seconds Testing fast - Valid Completed in 0.00040984153747559 Seconds Testing fast - Invalid Completed in 0.0003209114074707 Seconds Testing fast - null Completed in 0.00024294853210449 Seconds
Output for 5.3.5
Testing slow - Valid Completed in 0.00040316581726074 Seconds Testing slow - Invalid Completed in 0.00025701522827148 Seconds Testing slow - null Completed in 0.00014901161193848 Seconds Testing fast - Valid Completed in 0.00038504600524902 Seconds Testing fast - Invalid Completed in 0.00025200843811035 Seconds Testing fast - null Completed in 0.00014090538024902 Seconds
Output for 5.3.4
Testing slow - Valid Completed in 0.0005040168762207 Seconds Testing slow - Invalid Completed in 0.00034594535827637 Seconds Testing slow - null Completed in 0.00018787384033203 Seconds Testing fast - Valid Completed in 0.00049495697021484 Seconds Testing fast - Invalid Completed in 0.00031900405883789 Seconds Testing fast - null Completed in 0.00018119812011719 Seconds
Output for 5.3.3
Testing slow - Valid Completed in 0.0003819465637207 Seconds Testing slow - Invalid Completed in 0.000244140625 Seconds Testing slow - null Completed in 0.00014901161193848 Seconds Testing fast - Valid Completed in 0.00036406517028809 Seconds Testing fast - Invalid Completed in 0.00023794174194336 Seconds Testing fast - null Completed in 0.00013899803161621 Seconds
Output for 5.3.2
Testing slow - Valid Completed in 0.00040006637573242 Seconds Testing slow - Invalid Completed in 0.00025105476379395 Seconds Testing slow - null Completed in 0.00014805793762207 Seconds Testing fast - Valid Completed in 0.00038886070251465 Seconds Testing fast - Invalid Completed in 0.00024604797363281 Seconds Testing fast - null Completed in 0.00014305114746094 Seconds
Output for 5.3.1
Testing slow - Valid Completed in 0.00041103363037109 Seconds Testing slow - Invalid Completed in 0.00026392936706543 Seconds Testing slow - null Completed in 0.00016212463378906 Seconds Testing fast - Valid Completed in 0.00041699409484863 Seconds Testing fast - Invalid Completed in 0.0002591609954834 Seconds Testing fast - null Completed in 0.00014710426330566 Seconds
Output for 5.3.0
Testing slow - Valid Completed in 0.00037193298339844 Seconds Testing slow - Invalid Completed in 0.00024199485778809 Seconds Testing slow - null Completed in 0.00015687942504883 Seconds Testing fast - Valid Completed in 0.00036811828613281 Seconds Testing fast - Invalid Completed in 0.00025415420532227 Seconds Testing fast - null Completed in 0.00015115737915039 Seconds
Output for 5.2.17
Testing slow - Valid Completed in 0.00070285797119141 Seconds Testing slow - Invalid Completed in 0.00048589706420898 Seconds Testing slow - null Completed in 0.00031495094299316 Seconds Testing fast - Valid Completed in 0.00094103813171387 Seconds Testing fast - Invalid Completed in 0.0004730224609375 Seconds Testing fast - null Completed in 0.00032210350036621 Seconds
Output for 5.2.16
Testing slow - Valid Completed in 0.00059700012207031 Seconds Testing slow - Invalid Completed in 0.00050091743469238 Seconds Testing slow - null Completed in 0.00030088424682617 Seconds Testing fast - Valid Completed in 0.00063014030456543 Seconds Testing fast - Invalid Completed in 0.00044894218444824 Seconds Testing fast - null Completed in 0.0002899169921875 Seconds
Output for 5.2.15
Testing slow - Valid Completed in 0.00051188468933105 Seconds Testing slow - Invalid Completed in 0.00036287307739258 Seconds Testing slow - null Completed in 0.0002448558807373 Seconds Testing fast - Valid Completed in 0.00051617622375488 Seconds Testing fast - Invalid Completed in 0.00035691261291504 Seconds Testing fast - null Completed in 0.00023508071899414 Seconds
Output for 5.2.14
Testing slow - Valid Completed in 0.00064206123352051 Seconds Testing slow - Invalid Completed in 0.00045418739318848 Seconds Testing slow - null Completed in 0.00031208992004395 Seconds Testing fast - Valid Completed in 0.00062108039855957 Seconds Testing fast - Invalid Completed in 0.00044584274291992 Seconds Testing fast - null Completed in 0.00030303001403809 Seconds
Output for 5.2.13
Testing slow - Valid Completed in 0.00066304206848145 Seconds Testing slow - Invalid Completed in 0.00047397613525391 Seconds Testing slow - null Completed in 0.00036311149597168 Seconds Testing fast - Valid Completed in 0.00064420700073242 Seconds Testing fast - Invalid Completed in 0.00046896934509277 Seconds Testing fast - null Completed in 0.0003509521484375 Seconds
Output for 5.2.12
Testing slow - Valid Completed in 0.000640869140625 Seconds Testing slow - Invalid Completed in 0.00045895576477051 Seconds Testing slow - null Completed in 0.00032711029052734 Seconds Testing fast - Valid Completed in 0.00063800811767578 Seconds Testing fast - Invalid Completed in 0.00047588348388672 Seconds Testing fast - null Completed in 0.0003349781036377 Seconds
Output for 5.2.11
Testing slow - Valid Completed in 0.00057601928710938 Seconds Testing slow - Invalid Completed in 0.00040292739868164 Seconds Testing slow - null Completed in 0.0002751350402832 Seconds Testing fast - Valid Completed in 0.00053596496582031 Seconds Testing fast - Invalid Completed in 0.00038504600524902 Seconds Testing fast - null Completed in 0.00026488304138184 Seconds
Output for 5.2.10
Testing slow - Valid Completed in 0.00062894821166992 Seconds Testing slow - Invalid Completed in 0.00045609474182129 Seconds Testing slow - null Completed in 0.00031089782714844 Seconds Testing fast - Valid Completed in 0.00061607360839844 Seconds Testing fast - Invalid Completed in 0.00047397613525391 Seconds Testing fast - null Completed in 0.00029921531677246 Seconds
Output for 5.2.9
Testing slow - Valid Completed in 0.00062799453735352 Seconds Testing slow - Invalid Completed in 0.00046110153198242 Seconds Testing slow - null Completed in 0.00031185150146484 Seconds Testing fast - Valid Completed in 0.00060820579528809 Seconds Testing fast - Invalid Completed in 0.00044512748718262 Seconds Testing fast - null Completed in 0.00030398368835449 Seconds
Output for 5.2.8
Testing slow - Valid Completed in 0.00042080879211426 Seconds Testing slow - Invalid Completed in 0.00030303001403809 Seconds Testing slow - null Completed in 0.00020694732666016 Seconds Testing fast - Valid Completed in 0.00042295455932617 Seconds Testing fast - Invalid Completed in 0.00029611587524414 Seconds Testing fast - null Completed in 0.00020098686218262 Seconds
Output for 5.2.7
Testing slow - Valid Completed in 0.00068497657775879 Seconds Testing slow - Invalid Completed in 0.00048398971557617 Seconds Testing slow - null Completed in 0.00036096572875977 Seconds Testing fast - Valid Completed in 0.00069403648376465 Seconds Testing fast - Invalid Completed in 0.00047588348388672 Seconds Testing fast - null Completed in 0.00033307075500488 Seconds
Output for 5.2.6
Testing slow - Valid Completed in 0.00060915946960449 Seconds Testing slow - Invalid Completed in 0.00037693977355957 Seconds Testing slow - null Completed in 0.00030708312988281 Seconds Testing fast - Valid Completed in 0.0005800724029541 Seconds Testing fast - Invalid Completed in 0.00037789344787598 Seconds Testing fast - null Completed in 0.0002589225769043 Seconds
Output for 5.2.5
Testing slow - Valid Completed in 0.00064802169799805 Seconds Testing slow - Invalid Completed in 0.00046801567077637 Seconds Testing slow - null Completed in 0.00032210350036621 Seconds Testing fast - Valid Completed in 0.0006411075592041 Seconds Testing fast - Invalid Completed in 0.00046396255493164 Seconds Testing fast - null Completed in 0.00031685829162598 Seconds
Output for 5.2.4
Testing slow - Valid Completed in 0.00066208839416504 Seconds Testing slow - Invalid Completed in 0.00047588348388672 Seconds Testing slow - null Completed in 0.0003349781036377 Seconds Testing fast - Valid Completed in 0.000640869140625 Seconds Testing fast - Invalid Completed in 0.00046706199645996 Seconds Testing fast - null Completed in 0.00034880638122559 Seconds
Output for 5.2.3
Testing slow - Valid Completed in 0.00041794776916504 Seconds Testing slow - Invalid Completed in 0.00030994415283203 Seconds Testing slow - null Completed in 0.00021004676818848 Seconds Testing fast - Valid Completed in 0.00040793418884277 Seconds Testing fast - Invalid Completed in 0.00029683113098145 Seconds Testing fast - null Completed in 0.00020694732666016 Seconds
Output for 5.2.2
Testing slow - Valid Completed in 0.00045418739318848 Seconds Testing slow - Invalid Completed in 0.00030899047851562 Seconds Testing slow - null Completed in 0.00023293495178223 Seconds Testing fast - Valid Completed in 0.00043201446533203 Seconds Testing fast - Invalid Completed in 0.0003211498260498 Seconds Testing fast - null Completed in 0.00021982192993164 Seconds
Output for 5.2.1
Testing slow - Valid Completed in 0.00066089630126953 Seconds Testing slow - Invalid Completed in 0.00047802925109863 Seconds Testing slow - null Completed in 0.00035190582275391 Seconds Testing fast - Valid Completed in 0.00066494941711426 Seconds Testing fast - Invalid Completed in 0.00049114227294922 Seconds Testing fast - null Completed in 0.00034022331237793 Seconds
Output for 5.2.0
Testing slow - Valid Completed in 0.00059080123901367 Seconds Testing slow - Invalid Completed in 0.00042891502380371 Seconds Testing slow - null Completed in 0.00032305717468262 Seconds Testing fast - Valid Completed in 0.00059103965759277 Seconds Testing fast - Invalid Completed in 0.00044393539428711 Seconds Testing fast - null Completed in 0.00030803680419922 Seconds
Output for 5.1.6
Testing slow - Valid Completed in 0.00073480606079102 Seconds Testing slow - Invalid Completed in 0.00054502487182617 Seconds Testing slow - null Completed in 0.00037384033203125 Seconds Testing fast - Valid Completed in 0.00071907043457031 Seconds Testing fast - Invalid Completed in 0.00051403045654297 Seconds Testing fast - null Completed in 0.00035381317138672 Seconds
Output for 5.1.5
Testing slow - Valid Completed in 0.00051307678222656 Seconds Testing slow - Invalid Completed in 0.00035405158996582 Seconds Testing slow - null Completed in 0.00025606155395508 Seconds Testing fast - Valid Completed in 0.00049591064453125 Seconds Testing fast - Invalid Completed in 0.00035309791564941 Seconds Testing fast - null Completed in 0.00024199485778809 Seconds
Output for 5.1.4
Testing slow - Valid Completed in 0.0007169246673584 Seconds Testing slow - Invalid Completed in 0.00048303604125977 Seconds Testing slow - null Completed in 0.00034284591674805 Seconds Testing fast - Valid Completed in 0.0006709098815918 Seconds Testing fast - Invalid Completed in 0.00047492980957031 Seconds Testing fast - null Completed in 0.00034093856811523 Seconds
Output for 5.1.3
Testing slow - Valid Completed in 0.00058984756469727 Seconds Testing slow - Invalid Completed in 0.00041103363037109 Seconds Testing slow - null Completed in 0.00029301643371582 Seconds Testing fast - Valid Completed in 0.0005497932434082 Seconds Testing fast - Invalid Completed in 0.00038719177246094 Seconds Testing fast - null Completed in 0.00026512145996094 Seconds
Output for 5.1.2
Testing slow - Valid Completed in 0.00068187713623047 Seconds Testing slow - Invalid Completed in 0.00045299530029297 Seconds Testing slow - null Completed in 0.00036191940307617 Seconds Testing fast - Valid Completed in 0.00068998336791992 Seconds Testing fast - Invalid Completed in 0.00047016143798828 Seconds Testing fast - null Completed in 0.00036215782165527 Seconds
Output for 5.1.1
Testing slow - Valid Completed in 0.00070381164550781 Seconds Testing slow - Invalid Completed in 0.00048685073852539 Seconds Testing slow - null Completed in 0.00036215782165527 Seconds Testing fast - Valid Completed in 0.00068402290344238 Seconds Testing fast - Invalid Completed in 0.00046300888061523 Seconds Testing fast - null Completed in 0.00035810470581055 Seconds
Output for 5.1.0
Testing slow - Valid Completed in 0.00061297416687012 Seconds Testing slow - Invalid Completed in 0.00042080879211426 Seconds Testing slow - null Completed in 0.00034689903259277 Seconds Testing fast - Valid Completed in 0.00060701370239258 Seconds Testing fast - Invalid Completed in 0.00042200088500977 Seconds Testing fast - null Completed in 0.0003209114074707 Seconds
Output for 5.0.5
Testing slow - Valid Completed in 0.001230001449585 Seconds Testing slow - Invalid Completed in 0.00089693069458008 Seconds Testing slow - null Completed in 0.00060296058654785 Seconds Testing fast - Valid Completed in 0.00093603134155273 Seconds Testing fast - Invalid Completed in 0.00065016746520996 Seconds Testing fast - null Completed in 0.00044012069702148 Seconds
Output for 5.0.4
Testing slow - Valid Completed in 0.0010950565338135 Seconds Testing slow - Invalid Completed in 0.00057101249694824 Seconds Testing slow - null Completed in 0.00054717063903809 Seconds Testing fast - Valid Completed in 0.0011329650878906 Seconds Testing fast - Invalid Completed in 0.00064611434936523 Seconds Testing fast - null Completed in 0.00063109397888184 Seconds
Output for 5.0.3
Testing slow - Valid Completed in 0.0010409355163574 Seconds Testing slow - Invalid Completed in 0.00075101852416992 Seconds Testing slow - null Completed in 0.00057601928710938 Seconds Testing fast - Valid Completed in 0.0010120868682861 Seconds Testing fast - Invalid Completed in 0.00074005126953125 Seconds Testing fast - null Completed in 0.00056195259094238 Seconds
Output for 5.0.2
Testing slow - Valid Completed in 0.0011310577392578 Seconds Testing slow - Invalid Completed in 0.00070905685424805 Seconds Testing slow - null Completed in 0.00062394142150879 Seconds Testing fast - Valid Completed in 0.0011038780212402 Seconds Testing fast - Invalid Completed in 0.00081801414489746 Seconds Testing fast - null Completed in 0.00062680244445801 Seconds
Output for 5.0.1
Testing slow - Valid Completed in 0.0012428760528564 Seconds Testing slow - Invalid Completed in 0.00090694427490234 Seconds Testing slow - null Completed in 0.00063610076904297 Seconds Testing fast - Valid Completed in 0.0011169910430908 Seconds Testing fast - Invalid Completed in 0.00080084800720215 Seconds Testing fast - null Completed in 0.00063300132751465 Seconds
Output for 5.0.0
Testing slow - Valid Completed in 0.0011820793151855 Seconds Testing slow - Invalid Completed in 0.00086808204650879 Seconds Testing slow - null Completed in 0.00069499015808105 Seconds Testing fast - Valid Completed in 0.001154899597168 Seconds Testing fast - Invalid Completed in 0.00085115432739258 Seconds Testing fast - null Completed in 0.00069093704223633 Seconds
Output for 4.4.9
Testing slow - Valid Completed in 0.001333 Seconds Testing slow - Invalid Completed in 0.00098100000000001 Seconds Testing slow - null Completed in 0.00074999999999992 Seconds Testing fast - Valid Completed in 0.001287 Seconds Testing fast - Invalid Completed in 0.00094700000000003 Seconds Testing fast - null Completed in 0.00076199999999993 Seconds
Output for 4.4.8
Testing slow - Valid Completed in 0.001333 Seconds Testing slow - Invalid Completed in 0.00096300000000005 Seconds Testing slow - null Completed in 0.00074600000000002 Seconds Testing fast - Valid Completed in 0.001294 Seconds Testing fast - Invalid Completed in 0.00095000000000001 Seconds Testing fast - null Completed in 0.00070999999999999 Seconds
Output for 4.4.7
Testing slow - Valid Completed in 0.00070400000000004 Seconds Testing slow - Invalid Completed in 0.000498 Seconds Testing slow - null Completed in 0.00041200000000008 Seconds Testing fast - Valid Completed in 0.000718 Seconds Testing fast - Invalid Completed in 0.00050400000000006 Seconds Testing fast - null Completed in 0.00040399999999996 Seconds
Output for 4.4.6
Testing slow - Valid Completed in 0.001428 Seconds Testing slow - Invalid Completed in 0.001005 Seconds Testing slow - null Completed in 0.0007950000000001 Seconds Testing fast - Valid Completed in 0.001397 Seconds Testing fast - Invalid Completed in 0.00099700000000003 Seconds Testing fast - null Completed in 0.00071900000000003 Seconds
Output for 4.4.5
Testing slow - Valid Completed in 0.001239 Seconds Testing slow - Invalid Completed in 0.000865 Seconds Testing slow - null Completed in 0.000685 Seconds Testing fast - Valid Completed in 0.001243 Seconds Testing fast - Invalid Completed in 0.000851 Seconds Testing fast - null Completed in 0.001328 Seconds
Output for 4.4.4
Testing slow - Valid Completed in 0.001004 Seconds Testing slow - Invalid Completed in 0.00069200000000003 Seconds Testing slow - null Completed in 0.00054399999999999 Seconds Testing fast - Valid Completed in 0.00094900000000009 Seconds Testing fast - Invalid Completed in 0.00068800000000002 Seconds Testing fast - null Completed in 0.00052399999999997 Seconds
Output for 4.4.3
Testing slow - Valid Completed in 0.0013270000000001 Seconds Testing slow - Invalid Completed in 0.00088699999999997 Seconds Testing slow - null Completed in 0.00069299999999994 Seconds Testing fast - Valid Completed in 0.001217 Seconds Testing fast - Invalid Completed in 0.00080799999999992 Seconds Testing fast - null Completed in 0.000637 Seconds
Output for 4.4.2
Testing slow - Valid Completed in 0.00070800000000004 Seconds Testing slow - Invalid Completed in 0.00048500000000007 Seconds Testing slow - null Completed in 0.00038199999999999 Seconds Testing fast - Valid Completed in 0.00068599999999996 Seconds Testing fast - Invalid Completed in 0.00051099999999993 Seconds Testing fast - null Completed in 0.00037599999999993 Seconds
Output for 4.4.1
Testing slow - Valid Completed in 0.001487 Seconds Testing slow - Invalid Completed in 0.001006 Seconds Testing slow - null Completed in 0.00079 Seconds Testing fast - Valid Completed in 0.001436 Seconds Testing fast - Invalid Completed in 0.00098899999999999 Seconds Testing fast - null Completed in 0.00075700000000001 Seconds
Output for 4.4.0
Testing slow - Valid Completed in 0.001192 Seconds Testing slow - Invalid Completed in 0.00085800000000003 Seconds Testing slow - null Completed in 0.00064799999999998 Seconds Testing fast - Valid Completed in 0.00116 Seconds Testing fast - Invalid Completed in 0.00081200000000003 Seconds Testing fast - null Completed in 0.00066100000000002 Seconds
Output for 4.3.11
Testing slow - Valid Completed in 0.001239 Seconds Testing slow - Invalid Completed in 0.00090699999999999 Seconds Testing slow - null Completed in 0.000722 Seconds Testing fast - Valid Completed in 0.001182 Seconds Testing fast - Invalid Completed in 0.00086800000000009 Seconds Testing fast - null Completed in 0.00067700000000004 Seconds
Output for 4.3.10
Testing slow - Valid Completed in 0.001214 Seconds Testing slow - Invalid Completed in 0.000853 Seconds Testing slow - null Completed in 0.000674 Seconds Testing fast - Valid Completed in 0.001169 Seconds Testing fast - Invalid Completed in 0.000792 Seconds Testing fast - null Completed in 0.000617 Seconds
Output for 4.3.9
Testing slow - Valid Completed in 0.001107 Seconds Testing slow - Invalid Completed in 0.00075799999999998 Seconds Testing slow - null Completed in 0.00059200000000004 Seconds Testing fast - Valid Completed in 0.001051 Seconds Testing fast - Invalid Completed in 0.00074299999999999 Seconds Testing fast - null Completed in 0.00059700000000001 Seconds
Output for 4.3.8
Testing slow - Valid Completed in 0.0012529999999999 Seconds Testing slow - Invalid Completed in 0.00096200000000002 Seconds Testing slow - null Completed in 0.00074600000000002 Seconds Testing fast - Valid Completed in 0.001213 Seconds Testing fast - Invalid Completed in 0.00090100000000004 Seconds Testing fast - null Completed in 0.00071699999999997 Seconds
Output for 4.3.7
Testing slow - Valid Completed in 0.00094000000000005 Seconds Testing slow - Invalid Completed in 0.000664 Seconds Testing slow - null Completed in 0.00052599999999992 Seconds Testing fast - Valid Completed in 0.00089799999999995 Seconds Testing fast - Invalid Completed in 0.00065399999999993 Seconds Testing fast - null Completed in 0.00053999999999998 Seconds
Output for 4.3.6
Testing slow - Valid Completed in 0.001188 Seconds Testing slow - Invalid Completed in 0.000793 Seconds Testing slow - null Completed in 0.000652 Seconds Testing fast - Valid Completed in 0.001086 Seconds Testing fast - Invalid Completed in 0.000788 Seconds Testing fast - null Completed in 0.000609 Seconds
Output for 4.3.5
Testing slow - Valid Completed in 0.001224 Seconds Testing slow - Invalid Completed in 0.00084899999999999 Seconds Testing slow - null Completed in 0.00068000000000001 Seconds Testing fast - Valid Completed in 0.001248 Seconds Testing fast - Invalid Completed in 0.00083300000000003 Seconds Testing fast - null Completed in 0.00065199999999999 Seconds
Output for 4.3.4
Testing slow - Valid Completed in 0.001179 Seconds Testing slow - Invalid Completed in 0.00080599999999997 Seconds Testing slow - null Completed in 0.00063600000000003 Seconds Testing fast - Valid Completed in 0.001137 Seconds Testing fast - Invalid Completed in 0.00081800000000004 Seconds Testing fast - null Completed in 0.00061700000000003 Seconds
Output for 4.3.3
Testing slow - Valid Completed in 0.0011279999999999 Seconds Testing slow - Invalid Completed in 0.00079000000000007 Seconds Testing slow - null Completed in 0.00061900000000004 Seconds Testing fast - Valid Completed in 0.0014190000000001 Seconds Testing fast - Invalid Completed in 0.00078 Seconds Testing fast - null Completed in 0.00061100000000003 Seconds
Output for 4.3.2
Testing slow - Valid Completed in 0.00087500000000007 Seconds Testing slow - Invalid Completed in 0.00090699999999999 Seconds Testing slow - null Completed in 0.00046099999999993 Seconds Testing fast - Valid Completed in 0.000834 Seconds Testing fast - Invalid Completed in 0.00057299999999993 Seconds Testing fast - null Completed in 0.00044699999999998 Seconds
Output for 4.3.1
Testing slow - Valid Completed in 0.00067399999999995 Seconds Testing slow - Invalid Completed in 0.00047300000000006 Seconds Testing slow - null Completed in 0.00037299999999996 Seconds Testing fast - Valid Completed in 0.00065699999999991 Seconds Testing fast - Invalid Completed in 0.00046800000000002 Seconds Testing fast - null Completed in 0.00036599999999998 Seconds
Output for 4.3.0
Testing slow - Valid Completed in 0.00122 Seconds Testing slow - Invalid Completed in 0.00085999999999997 Seconds Testing slow - null Completed in 0.00067600000000001 Seconds Testing fast - Valid Completed in 0.0011059999999999 Seconds Testing fast - Invalid Completed in 0.00078699999999998 Seconds Testing fast - null Completed in 0.00061299999999997 Seconds

preferences:
166.83 ms | 402 KiB | 190 Q