<br><br>
<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div class="im"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><br>
> These days I'm having problems with improving the test cases.<br>
> It's not a good idea to run all the tests after improve test for each<br>
> function since it takes much time.<br>
> As well I can't run tests individually without errors again and again.<br>
> (File not found, undefined constant,  undefined variable)<br>
> I cannot find that my tests are correct or not.<br>
<br>
</div>First of all the tests should run standalone as well as part of<br>
testsuite. I see lot of tests fail in both modes, so maybe that's the<br>
reason why it fails for you?<br>
<div><br>
> Please suggest me some way to get rid of this problem.<br>
> Its very helpful if you can give one example for fixing a failing test in<br>
> PMA_DisplayResults_test.php<br>
<br>
</div>Fix the tests and code to work together :-).<br></blockquote><div> </div></div><div>Okay I'll try again Michal <br></div></div>
</blockquote></div><br>Hi Michal,<br><br>I managed to run only needed tests by modifying phpunit.xml.dist file. And now Its no need to wait till all tests are running.<br><br>The problem for the errors in PMA_DisplayResults_test.php tests is not properly set the properties of PMA_DisplayResults class.<br>
So that, I get following two types of errors :<br>1. Trying to get property of non-object  -   $fields_meta[0]->table<br>2. Invalid argument supplied for foreach()  -  foreach ($vertical_display[$operation] as $val)<br>
<br>I try to set those parameters by calling setProperties() method.<br>As I found, the conditions inside __set and __get method are not satisfying. <br><br>That is,<br>if (property_exists($this, $property))<br><br>But if I print the object at testing time, it shows me the properties are actually there itself.<br>
I am confusing about this.<br>Do you have any idea or suggestion for this ?<br><br>Regards !<br><br><i style="color:rgb(153,153,153)">Chanaka</i><br>