Before CF app goes to production - what do you do?

Hi!

I have some questions for all (CFML) developers.

How do you test your CF app before it goes to production?
What tools do you use in real life (varscoper, code analyzer …)?
Do you use any testing frameworks like MXunit or TestBox? Do you write test
cases by hand? Are there any automation tools that wood prepare the test
cases for you.

Do you recommend any special tools that would help programmer find or
prevent errors?

What can you do to make a very stable app that is ready for production?

Thanks.

Hi Karniolus,

This question might be better suited to the CFML Craftsmanship Group:

https://groups.google.com/forum/#!forum/cfml-craftsmanship

Website: http://cfml-craftsmanship.com/

Also there are bi-weekly online live chats about all these sorts of things
as well hosted by the group founder Kev McCabe. Come join us over there.

Kind regards,

Andrew
about.me http://about.me/andrew_dixon
mso http://www.mso.net - Lucee http://lucee.org - MemberOn 4 April 2015 at 20:19, karniolus <@karniolus> wrote:

Hi!

I have some questions for all (CFML) developers.

How do you test your CF app before it goes to production?
What tools do you use in real life (varscoper, code analyzer …)?
Do you use any testing frameworks like MXunit or TestBox? Do you write
test cases by hand? Are there any automation tools that wood prepare the
test cases for you.

Do you recommend any special tools that would help programmer find or
prevent errors?

What can you do to make a very stable app that is ready for production?

Thanks.


You received this message because you are subscribed to the Google Groups
“Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an
email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/2077e865-0294-4eca-8cf6-bc640be0807a%40googlegroups.com
https://groups.google.com/d/msgid/lucee/2077e865-0294-4eca-8cf6-bc640be0807a%40googlegroups.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout.

For sure load test (I use Blitz.io, but there are other options) and
profile the JVM (I use New Relic, but there are many other options). The
last thing you want is your app to crash when under production loads. It’ll
also reveal where your bottlenecks and inefficiencies might lie as well as
any memory leaks.

Paul