I’m currently reading… / Actualmente estoy leyendo…

Hi Community, I’m still in chilly Melbourne for work commitments, as a matter of fact, I’ve been considering the idea about applying for the “Victorian Citizenship”  (just joking!!!). Even when I’ve been flat out lately, I’ve been spending some time reading every night when I’m back to the hotel, so this post is about some of the books that I’m currently reading and that I would highly recommend you to have on your bookshelves. Regards, Angel Hola Comunidad, Aún me encuentro en la fría ciudad de Melbourne por compromisos laborales, de hecho, he estado considerando la idea de aplicar por … Continue reading I’m currently reading… / Actualmente estoy leyendo…

Unit Testing Frameworks for C++

Hi Community, This is the first post for  August 2010 and I must say that “This year has flown by” and I’ve been pretty busy in  Melbourne lately. A few days ago my mate and peer Simon Waight flicked me an email about  this very interesting Unit Test Framework for C++ called Isolator++ which in my humble opinion has a lot to offer, a basic code snippet using this framework is shown below 1: int Product::GetPrice(PricingManager* manager) 2: { 3: if (manager->isOnSale()) 4: return 5; 5: else 6: return 10; 7: } 8:  9:  10: bool PricingManager::isOnSale() 11: { 12: … Continue reading Unit Testing Frameworks for C++

Marcos de trabajos para pruebas unitarias en C++

Hola Comunidad, Este es el primer post del mes de Agosto 2010 y debo decir “Este año se ha ido volando”, he estado bastante ocupado en la ciudad de Melbourne. Hace unos días atrás mi amigo y colega Simon Waight me envío un correo sobre un marco de trabajo para pruebas unitarias llamado Isolator++ el cual me pareció muy interesante, a continuación un fragmento de código que muestra como usarlo 1: int Product::GetPrice(PricingManager* manager) 2: { 3: if (manager->isOnSale()) 4: return 5; 5: else 6: return 10; 7: } 8:  9:  10: bool PricingManager::isOnSale() 11: { 12: return false; 13: … Continue reading Marcos de trabajos para pruebas unitarias en C++