Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
7answers
637 views

Is 100% code coverage a really good thing when doing unit tests?

I always learned that doing maximum code coverage whit unit tests is good. I also hear developers from big companies such as Microsoft saying that they write more lines of testing code than the ...
7
votes
3answers
361 views

Can I create a named default constraint in an add column statement in SQL Server?

In SQL Server, I have a new column on a table: ALTER TABLE t_tableName ADD newColumn NOT NULL This fails because I specify NOT NULL without specifying a default constraint. The table should ...
6
votes
3answers
107 views

embedded software maintainability - configuation

I am developing a embedded software that is meant to run on two to three different family of micro controllers. For now we have makefiles that reads the configuration switches and does compilation. ...
5
votes
1answer
70 views

What's the normal way of organising a header file in Objective-C?

I do start off organising my .h files with the best intentions but somehow they get disgustingly messy. Below is an example (which isn't that bad, but i've seen much worse!). I've tried grouping ...
4
votes
3answers
300 views

Inputs for improving code debuggability apart from logs and error codes

Apart from error codes, error strings and logs, are there any other features which can be incorporated in the code to increase getting debug / trace information during code runtime which can help ...
3
votes
5answers
461 views

Generic reflective helper method for equals and hashCode

I'm thinking about to create a reflective helper method for equals and hashCode. In case of equals the helper method looks over the reflection API to the fields of objectA and compares them with ...
3
votes
8answers
900 views

What is the maximum number of lines that should be allowed in a single file?

At some point, things get unwieldy. Where do you draw the line and try to break things out?
2
votes
2answers
51 views

ASP.NET MVC to Existing ASP.NET App with BusinessLayer.Better way to load ViewModel objects from Existing BusinessLayer?

I have a legacy asp.net web application which has 2 layers , UI and BusinessLayer. The UI project is of type ASP.NET website and BL is of type class library. The BL project has classes for entities of ...
2
votes
5answers
603 views

java 1.5: Best practice to keep constants for column name of db tables?

Technology: - Java 1.5 or 1.6 - Hibernate 3.4 To avoid update of column name on multiple places on change of column name or tablename, i want to have a constant file for same. I have following ...
2
votes
3answers
150 views

Maintainable CSS vs. theme-ability

The above seem to be contradictory goals. On the one hand, making CSS maintainable seems to me to suggest keeping CSS structured and orderly, and keeping all the styles of an element together in one ...
1
vote
1answer
121 views

How to quickly understand if code is maintainable or not?

I have got task to code review several mln lines of code to determine if it is reasonable for 5 team members to be able to understand and maintain the project over the next few years. So what we have ...
1
vote
1answer
16 views

A big Utility or separate into different pieces?

I am writing an application, which will a few programmers involve in. We come up with some problems when managing source code. We usually have a Utility.php, which share among different users. So, we ...
1
vote
4answers
201 views

CSS child width 100% or px question

Maybe a simple question with an easy answer. I wondered today what is the difference between a child width in px or 100%, when the child is going to be the exact same width as the parent. The ...
1
vote
4answers
103 views

How much performance do I lose by increasing the number of trips to SQL Server?

I have a web application where the web server and SQL Server 2008 database sit on different boxes in the same server farm. If I take a monolithic stored procedure and break it up into several ...
0
votes
3answers
203 views

JQuery:Inserting big amounts of html through DOM manipulation - maintainability?

I've found good posts on good practices inserting dom elements using jquery like this, this and this It's ok when you just need to insert a few elements, but it seems to me that these option are very ...
0
votes
2answers
126 views

Challenges of refactoring unit-tests to be maintainable and readable when dealing with List<T> objects

In the book The Art of Unit Testing it talks about wanting to create maintainable and readable unit tests. Around page 204 it mentions that one should try to avoid multiple asserts in one test and, ...