Does my development environment mirror user's environment? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T23:38:43Zhttp://stackoverflow.com/feeds/question/1070250http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1070250/does-my-development-environment-mirror-users-environment2Does my development environment mirror user's environment?Refracted Paladin2009-07-01T16:59:41Z2009-07-01T18:45:31Z
<p>I am trying to get a better idea on this as so far I have had mixed answers in person.</p>
<p>I am a solo dev in a 5 man IT dept for a Health Care related business. My developer machine is running Win 7 RC1 (x64) but my users are all running Win XP Pro (x86). Is this a big deal? Whan kind of pitfalls should I be aware of? Is having a VM of the user image enough?</p>
<p>Should my environment completely mirror my end user's?</p>
http://stackoverflow.com/questions/1070250/does-my-development-environment-mirror-users-environment/1070271#10702717Answer by Eric Petroelje for Does my development environment mirror user's environment?Eric Petroelje2009-07-01T17:03:52Z2009-07-01T17:03:52Z<p>Your development environment doesn't need to mirror your user's environment, but your testing environment certainly should!</p>
<p>Having a VM of the users image for testing would probably be good enough.</p>
http://stackoverflow.com/questions/1070250/does-my-development-environment-mirror-users-environment/1070277#10702770Answer by eschneider for Does my development environment mirror user's environment?eschneider2009-07-01T17:05:21Z2009-07-01T18:45:31Z<p>Typically you want to develop on the same OS that your user base is using for client development. But if it's a simple application, it may not be a big deal.</p>
<p>The bigger differences in the development environment from the users environment, more chance there will be a problem when in the test environment or deployed.</p>
<p>Feature sets are different on different OS. Some services may/may not be available.</p>
<p>For example you can't run just .NET 1.0 or 2.0 on Windows Vista you must have 3.0 >. This can cause deployment issues as installers are usually built on developer machines. I had this issue when doing some Government work. They would not allow .NET 2.0 SP2 to be installed and other clients using Vista could not install .Net 2.0.</p>
<p>Your hardware should be comparable also.
If you user base runs older machines you application may run so slow they will complain. Also software runs differently on dual core vs. a single core. A striped raided machine will do most file system task much quicker. Some software does not work properly on 64 bit, I have video driver problems on this laptop at the moment. The Zune client will not run on XP64 (With-out major hacks)</p>
http://stackoverflow.com/questions/1070250/does-my-development-environment-mirror-users-environment/1070279#10702790Answer by User for Does my development environment mirror user's environment?User2009-07-01T17:05:35Z2009-07-01T17:05:35Z<blockquote>
<p>Is this a big deal?</p>
</blockquote>
<p>Yes, it is. You have an OS 2 generations ahead of the one the users have, including you are running a non-release version.</p>
<blockquote>
<p>Whan kind of pitfalls should I be aware of?</p>
</blockquote>
<p>Depends on what you are developing. Some libraries may be missing that you already have, then the versions may be different etc.</p>
<blockquote>
<p>Should my environment completely mirror my end user's?</p>
</blockquote>
<p>Not necessarily, but you definitely need to have a testing environment that corresponds to the one the users have.</p>
<p>If you were developing web applications, all that would not have been an issue (well, unless you used some fancy fonts that are not present in a clean OS by default).</p>
http://stackoverflow.com/questions/1070250/does-my-development-environment-mirror-users-environment/1070282#10702821Answer by Kevin Montrose for Does my development environment mirror user's environment?Kevin Montrose2009-07-01T17:05:50Z2009-07-01T17:05:50Z<p>Its unreasonable to develop on <em>exactly</em> the same type of system as your users. If nothing else, your life is made much easier by installing all sorts of developer tools your end users have no reason to install. I hear Visual Studio in particular likes to squirrel a number of potential dependencies onto a system.</p>
<p>However, you do need to test on a system more inline with that of your end users. If you have access to an image of such a system, your VM approach should be sufficient. If nothing else, you should try for a staged (or better yet, beta/trial) release so as to avoid pushing a completely broken app out the door.</p>
<p>In short, don't fret about the development environment but put some thought into your testing one!</p>
http://stackoverflow.com/questions/1070250/does-my-development-environment-mirror-users-environment/1070284#10702841Answer by Neil Butterworth for Does my development environment mirror user's environment?Neil Butterworth2009-07-01T17:06:43Z2009-07-01T17:06:43Z<p>It's effectively impossible for any two machines to be set up the same, so development and production environments will always be different. One advantage in them being VERY different is that you will be more aware of possible deployment problems.</p>
http://stackoverflow.com/questions/1070250/does-my-development-environment-mirror-users-environment/1070286#10702861Answer by Relster for Does my development environment mirror user's environment?Relster2009-07-01T17:06:53Z2009-07-01T17:06:53Z<p>The type of environment that you need to use for testing entirely depends on what you're developing.</p>
<p>If you're writing web applications, having a VM with the user's standard image should be more than enough (just make sure the VM contains all the browsers your users might be using). Web development is much easier in this respect (I'm also running Windows 7 and have a couple VMs to test various environments)</p>
<p>If you're writing a full desktop environment, you'll probably want to ask for a second computer that you can test on (even if just to test before a final release). I say that because of differences in hardware. Just imagine if something runs fine for you, but slows down the users computer so that everything else is unusable. Opposite of that, you might spend hours trying to make something faster in the VM whereas running that on a users computer might run just fine.</p>
http://stackoverflow.com/questions/1070250/does-my-development-environment-mirror-users-environment/1070512#10705123Answer by Mike Hofer for Does my development environment mirror user's environment?Mike Hofer2009-07-01T18:00:56Z2009-07-01T18:00:56Z<p>First and foremost, as a developer, your machine will <em>never</em> look like your client's machine. Just accept that.</p>
<p>You will have tools and utilities installed that they won't have. That will fundamentally change the configuration of your machine from the outset. You have DLLs, applications, services, and possibly drivers installed that your users have never even heard of (and likely never will).</p>
<p>As far as the OS is concerned, Win7 and WinXP, despite claims to the contrary, <em>are not the same animal</em>. Don't believe the hype. Having said that, don't believe the anti-hype, either. Just be aware, as you well should, that any piece of software developed under one version of an OS is not guaranteed to behave the same way under another.</p>
<p>The short of it: Yes, it's important that your environment is different. Should you panic about it? No. Should you account for it in testing? Absolutely. As rigorously as possible.</p>