Re: [Vala] GTest

2008-10-27 Thread Ali Sabil
Hi, In the People[1] project we also have been looking into a better unit testing framework for Vala, we had various attempts with vunit, and then vtest, but both of them were not as good as we wanted. We ended up cooking a very simple unit testing framework, that we called test-it[2], and that's

Re: [Vala] GTest

2008-10-27 Thread Daniel Lucraft
I'm sure this isn't for everyone, but I've been using Valar (http://github.com/danlucraft/valar/tree/master) to generate Ruby bindings for my Vala library, and then using RSpec to test it. Example of vala code under test:

[Vala] GTest

2008-10-26 Thread Maciej Piechotka
Is there any samples how to use GTest? Best regards -- I've probably left my head... somewhere. Please wait untill I find it. Homepage (pl_PL): http://uzytkownik.jogger.pl/ (GNU/)Linux User: #425935 (see http://counter.li.org/) ___ Vala-list mailing

Re: [Vala] GTest

2008-10-26 Thread Christian Hergert
Hello, Here is an example from one of my projects. http://github.com/chergert/gtask/tree/master/tests/test-4.vala -- Christian On Sun, Oct 26, 2008 at 8:08 AM, Frederik [EMAIL PROTECTED] wrote: Maciej Piechotka wrote: Is there any samples how to use GTest? Best regards Hi, I haven't