Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
502 views

Do you separate your unit tests from your integration tests?

I was just wondering if anyone else just sees integration tests as just a special unit test. I have, however, heard from other programmers that it is a good idea to separate your unit tests and ...
4
votes
2answers
279 views

Refactor “package structure” in Eclipse to relocate a package's child package to its parent package

In Eclipse's "Package Explorer", let's say I have a list of packages like this: com.animal.dog com.animal.cat com.animal.frog If I want to refactor this package structure so that the final ...
4
votes
7answers
233 views

in which namespace / package to put exceptions

What is the common or best practice to structure the location of your exception classes? Let's say you have the packages/namespaces myproject.person (models and DAOs for persons) and myproject.order ...
2
votes
1answer
105 views

Is/Are there any standard package structuring/heirarchy practices for Android?

When developing J2EE web applications I would typically organise my package structure in the following way com.jameselsey.<applicationName>. Controller - Controllers/Actions go here Service - ...
1
vote
1answer
45 views

Where to place Reader/Writer/Emailer … *er classes in this package structure?

The way I was initially taught to structure 3-tier is as follows: dao domain services utils jsf (beans) ... A *er class that is instantiatable would fit none of these packages especially utils ...
0
votes
3answers
80 views

How do I resolve namespace conflicts in my Python packages with standard library package names?

I am developing a package with the following structure on disk: foo/ __init__.py xml.py bar.py moo.py The xml.py package provides a class that does some custom XML parsing and ...
0
votes
2answers
102 views

Need help on how to setup package structure and project

I am new to Java and am making a license generator. This is my current setup. com.example.licensegenerator.client (used by the client application) :LicenseLoader (no Main method) ...