English 中文(简体)
编辑的改动,而不是框架——是否需要全面的周期测试?
原标题:Change in compiler, not the framework - Is a full cycle test needed?

我们开展了一个长期的项目,该项目正在VS 2008上开发。 NET Framework 3.5。 该软件经历了许多测试周期。 我们继续增加特征、设置障碍等。 几天前还进行了全面的周期测试(测试每个特点——对一个人进行6周检测)。 现在,当添加新的特征或确定一些灯泡时,只有相关部分在新释放之前经过测试。

我们重新计划逐步开始使用VS 2010。 该软件仍在运行。 NET Framework 3.5。 根据我的理解,由于我们正在使用新的汇编者,该汇编可能以不同方式汇编同样的代码,新的汇编者软件的下一期发布必须经过全面的周期测试,尽管该软件将在同一框架内运行。

Is a full cycle testing really necessary in this case?

* 我没有足够经验可以确定,我感到可能发生这种情况。

最佳回答
问题回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...