What does the Mendix do in test automation and continuous integration?

1
Hi everyone, I come to this page "https://www.mendix.com/application-platform-as-a-service/" and in the section "1-Click Deployment" I see this... Build Server API for test automation and continuous integration Does anyone explain it to me what Mendix can do for test automation and continuous integration? Thank you.
asked
1 answers
4

Mendix has a module for automated unit testing. With this module it is easy to quickly run all unit tests that have been made in Mendix. This can also be done using a webservice linked to the unit test module (API).

The deployment part of mendix can indeed also be fully automated on a build server with Jenkins, but I have only tried to do this, and then gave up since automating this was not easy for me. Also the normal deployment method is so simple, automating this process was not worth it (press of a single button in the modeler).

As for test automation, I use the Unit test module of Mendix, and soapUI for testing of API's. For testing of the user interface I have made my own selenium based test tool because there is no really good off the shelf tool that I know of. You can try using selenium in combination with the unique class names that mendix conviniently adds to the different elements in you webpage.

answered