The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
244 views

How to analyse a Java source code that has errors

I'm currently writing a program to analyse Java source code for constructs such as a function/method of a certain name, return type and parameters, eg. I could test to see if there is a function with ...
5
votes
3answers
484 views

PHP in command line

Using Python I can test my code in the terminal / command line by typing python python> print "hello world" I would like to do this with PHP too, but when typing: php echo "hello world"; it ...
5
votes
7answers
223 views

How to test code easily?

I'm learning Java by reading "Head First Java" and by doing all the puzzles and excercies. In the book they recommend to write TestDrive classes to test the code and clases I've written, that's one ...
1
vote
1answer
59 views

Making C++ COM classes more test-friendly

Our code-base has a lot of COM objects, so typically we'll have something like: //this is the IDL-generated IGetTime interface header #include "gettime.h" //our COM class implementation of IGetTime ...