0

I write a functional test for my symfony software and run it from command prompt. Now I want to get the result of functional test as a report(in a text file or word file etc).

How can U resolve this issue ?

j0k
  • 22,600
  • 28
  • 79
  • 90
Chaity
  • 27
  • 1
  • 6

1 Answers1

0

Using :

$ php symfony test:functional --xml=log.xml

You can retrieve a xml.

If you want to integrate your test suite in a continuous integration process, use the --xml option to force the test:functional task to generate a JUnit compatible XML output.

j0k
  • 22,600
  • 28
  • 79
  • 90