methodology

Day Change Update Problem

C# - Winforms - SQL Server i am building an application which displays some data on the screen of the current day which it gets from the database... the application is like a desktop widget so the data is always visible on the desktop the scheme i implemented is when user commits some change to the data, after the update query i ...

Correct approach to handle data verification

I have an employee class in my application. The constructor for the class takes an employee ID. The way I try to check if the employee ID is valid is something like this Employee emp = new Employee("E11234"); if (emp.IsValid()) { // do whatever is required } else { // show an error message } In the constructor, I try to access...

Do Surgical Teams exist?

Has anybody been in or has seen a kind of "Surgical Team" as described in The Mythical Man Month? Have you heard of somebody actually implementing "Mill's Proposal"? ...

Migrating a custom persistence layer to hibernate3

So, very soon, I will be part of a migration that will move a home-rolled persistence layer (circa any good, popular ORM) to hibernate3. However, at the same time that this migration happens, developers will be working to implement new business logic atop the current persistence layer, hence working against the migration! Does anyone hav...

SDLC: Managing changes in a 'Closed System' (M1 - ERP)

I am working with a client who has an ERP system in place, called M1, that they are looking to make custom changes to. I have spent a little bit of time investigating the ERP system in terms of making customizations. Here is a list of what I have found with regards to custom changes: Custom changes cannot be exported/imported. There...

spirit of a jUnit test

Suppose that you have the following logic in place: processMissing(masterKey, masterValue, p.getPropertiesData().get(i).getDuplicates()); public StringBuffer processMissing(String keyA, String valueA, Set<String> dupes) { // do some magic } I would like to write a jUnit test for processMissing, testing its behavior in event dupes is ...

What are the major industry standard Automated Testing Frameworks?

I'm working on establishing automated testing practices and test suites in an organization. A peer is telling me that we "should use a framework". To me, a framework is any set of code and/or other tool that helps you create something. My peer seems to be suggesting that there are industry standard automated testing frameworks. I'v...

What is the difference set-based and agile development?

I have been trying to find a conclusive article to show the difference between set-based and agile development, but the both sound like same to me. ...

Can cxxtest suite be dynamically extended at run-time?

I wish to dynamically extend my CxxTest Suite with additional test items, but am finding that all the testing scenerios must be available (hard-coded) at compile time. My scenario is that I've got a fairly bulky C++ class that has 20+ methods to be tested. This class needs to be tested for 40+ DIFFERENT data sets. These data sets are ...

Does anybody know what companies are currently using agile iconix process??

Does anybody know what large companies are currently using agile iconix process?? ...

Where can I learn about agile/extreme programming online?

I have a small (5 people) team of developers working in a bunch of projects right now. How can I use some agile/extreme methodologies to keep an organized shop that always delivers projects in time ? ...

High Integrity / Information Assurance in Software Development and Delivery Processes

Suppose you develop for a customer that requires the utmost assurances of the provenance and process-compliance of the software you deliver to them. What measures can a development organization take to provide high-integrity software? This was originally inspired by a couple questions about security practices for development systems ove...