I work for a company that heavily pushes agile practices. As such the projects I work on are often heavily tested at unit, integration and automation levels, as well as tied into a CI/Continuous deployment pipeline. Added to this we usually have several levels of manual, penetration and performance tests.

But I wonder if these approaches are appropriate when creating online applications in order to experiment with as startup concepts. I know of several very successful companies that work on the model that they build what essentially amounts to prototypes, and if they turn out to be successful ideas will take the time to revisit the applications. What is are your thoughts on this as a practice?

P.S. How do I make this a community wiki question?

link|improve this question

73% accept rate
You can no longer automatically make community wiki questions; moderators must tag them as such. See this thread on metastackoverflow. – lunchmeat317 Apr 1 '11 at 23:34
feedback

3 Answers

up vote 1 down vote accepted

Interesting question - considering that they are currently a big name in innovation, I will cite Google and shoot you over to the Google Labs page.

Google does do startup concepts, and some of them become very successful. The question about these concepts, though, is not whether they're tested; the question is, how far are they tested?

Because they're just startups, developers likely don't profile and optimize as much as they would for a full project, and they probably don't worry about "pipelines" or anything. I believe that, in this case, in the case of a startup deployment, definitely test your code to make sure it's doing what it should - but don't let testing, code cleanliness, and optimization cripple your deployment. Just make it work, even if it's crude. If people like it and there's a demand, then go back and make it stable and pretty. I wouldn't see the point in devoting time to a project that would be dead when it hit the water, y'know?

(Additionally, by doing this, you can get user feedback on things that code testing and profiling would never catch - like good design, user-friendliness, etc. This is one of the core ideas of Google Labs. Check out this article at CodingHorror.com - it's about StackOverflow and the stuff they have to focus on besides code. It isn't a bad read.)

I suppose it really depends on your work environment, though. Google can afford to do this and they've done some wonderful things with it. Different workplaces have different ideals, and different workplaces make different products. Your company's approach may not be optimal if they make, I don't know, online minigames for Facebook, but it could be very logical if they're dealing with sensitive data like credit card transactions. But the bottom line is, for startup ideas, it's not about the code - it's about the application, and it's easy for programmers to miss seeing the application through the code.

Just my two cents - please ingest them with a grain of salt (and pepper to taste), as most people here probably have a lot more experience and scope than I do. :P

link|improve this answer
Lots of very interesting points, I think that I have come to the conclusion that I will be testing but not always at every layer. I will write tests where it feels appropriate, just based upon instinct. – Owen Apr 9 '11 at 11:43
feedback

Unit testing is good: it makes sure your code is correct + it actually makes some API calls. Without it, you often end up with code with garbled APIs and spaghetti logic, and fixing bugs in that may take longer than unit testing would in the first place.

That said, if you're trying to get a prototype out quickly to test a new idea that might not work out, no point investing too much effort into testing.

As far as revisiting prototype code (aka throw-away code), the only acceptable type of revisiting is re-writing from scratch.

You can always use a combo approach - identify a couple of components that you'd likely keep and develop these properly, and go easy on others.

So the ultimate answer in my opinion - exercise judgement.

link|improve this answer
feedback

It depends on how mature the startup is, but that's sort of a wishy washy answer.

I've worked / quoted some small startups. A lot of them are still struggling to find funding and or just throwing ideas around. Sure a full fledged testing suite would be nice, but mostly what these small startups care about is time to market and a working demo.

If you're a bigger startup then it makes sense, but I'm not so sure about the extremely small ones.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.