Iulian Șerbănoiu

1,446
reputation
118 views

Registered User

name Iulian Șerbănoiu
member for 1 year
seen Dec 11 at 23:10
website
location Bucharest, Romania
age 27
Nov
6
comment Macro to replace C++ operator new
very very smart If I think again you could do something like: #define new PrepareNew(FILE,LINE, other ... parameters); new #define delete PrepareDelete( .... ); delete You could implement this to be thread safe without any hassle
Sep
17
awarded  Yearling
Sep
13
comment Is there an open source alternative to the stackoverflow model?
The site will not have any commercial purposes, so I'm not interested in a commercial solution that involves some costs.
Sep
13
comment Is there an open source alternative to the stackoverflow model?
It actually doesn't matter. I don't find SO's model an absolute must. Thank you
Sep
13
asked Is there an open source alternative to the stackoverflow model?
Jul
28
comment Are there any tools for verifying coding standards?
Thanks, my search was lousy.
Jul
28
asked Are there any tools for verifying coding standards?
Jul
20
asked Must every test-case undo their operation at the end?
Jul
12
asked Is assert and unit-testing incompatible?
Jul
11
answered What are the most cool and modern programming areas nowadays?
Jul
11
answered Is the sizeof(enum) == sizeof(int), always ?
Jul
11
comment How-to do unit-testing of methods involving file input output?
I have tests for dynamic allocation - fail/(not fail) which forces the test to fail in case something is wrong with the code.[leave this one out please :) - it is handled]
Jul
10
revised How-to do unit-testing of methods involving file input output?
edited title
Jul
10
comment How-to do unit-testing of methods involving file input output?
It's a start. Hope I'll manage to do this in C++Test
Jul
10
comment How-to do unit-testing of methods involving file input output?
You are correct, but the buffer is dynamically allocated to be equal to the size of the file. I simplified the problem a little [I have stubs for allocating memory - but C++Test doesn't help me making stubs for fstream class methods].
Jul
10
comment How-to do unit-testing of methods involving file input output?
Yes, but maybe we want to "simulate" some errors that do not occur always when using files. I guess that sometimes some errors are impossible to simulate with a real filesystem.
Jul
10
asked How-to do unit-testing of methods involving file input output?
Jun
30
awarded  Organizer
Jun
30
revised Finite State Machine compiler
edited tags
Jun
30
answered Why not use pointers for everything in C++
Jun
30
comment .hgignore syntax for ignoring only files, not directories?
Thanks a lot, it confirms my beliefs.
Jun
26
asked .hgignore syntax for ignoring only files, not directories?
Jun
22
comment copying a text file- c++
show us the code