39

Get message:

OK, but incomplete or skipped tests!

without any information where is happen. Only the: ..I........

How can i find where is the problem?

Thanks

Ben
  • 25,389
  • 34
  • 109
  • 165

3 Answers3

70

The output indicates that your third test case is incomplete. Try running phpunit with the --verbose flag to output more information.

Ryan Chouinard
  • 2,076
  • 16
  • 11
0

i had an echo call in a test that passed without any assertions. The test passed, after removing the echo. (didn't get any info upon passing --verbose to the test runner)

MichaelMoser
  • 3,172
  • 1
  • 26
  • 26
-1

My one test had this:

$this->markTestSkipped();

Hence it was skipped.

Fred Campos
  • 1,457
  • 1
  • 19
  • 22