lp:~asabil/+junk/vala-gtest-module

Created by Ali Sabil and last modified
Get this branch:
bzr branch lp:~asabil/+junk/vala-gtest-module
Only Ali Sabil can upload to this branch. If you are Ali Sabil please log in for upload directions.

Related bugs

Related blueprints

Branch information

Owner:
Ali Sabil
Status:
Development

Recent revisions

2364. By Ali Sabil

Added a GTest module to the gobject backend

The GTest module allows creating test suites with the following code:

[Test (path = "/vala/modules/gtest")]
class FooBarTest {

 public void set_up () {

 }

 public void tear_down () {

 }

 public void test_success () {
  assert (1 == 1);
 }

 public void test_failure () {
  assert (1 == 0);
 }
}

int main (string[] args) {
 Test.init (ref args);

 var o = new FooBarTest ();

 return Test.run ();
}

2363. By juergbi

2009-01-18 Jürg Billeter <email address hidden>

 * vala/valacodecontext.vala:
 * gobject/valaccodebasemodule.vala:
 * gobject/valaccodecompiler.vala:

 Do not generate legacy header files when using -H

2362. By juergbi

2009-01-18 Jürg Billeter <email address hidden>

 * configure.ac: Post-release version bump

2361. By juergbi

2009-01-18 Jürg Billeter <email address hidden>

 * NEWS: update for 0.5.6 release

2360. By juergbi

2009-01-18 Jürg Billeter <email address hidden>

 * gobject/valaccodememberaccessmodule.vala:
 * vapi/glib-2.0.vapi:

 Add Log.FILE, Log.LINE, and Log.METHOD constants as replacements
 for __FILE__ and __LINE__ as they are used in C

2359. By juergbi

2009-01-18 Jürg Billeter <email address hidden>

 * vapi/Makefile.am:
 * vapi/posix.vapi:

 Add stub POSIX binding

2358. By juergbi

2009-01-18 Jürg Billeter <email address hidden>

 * vala/valaparser.vala:

 Accept `params' as identifier after cast parentheses

2357. By juergbi

2009-01-18 Jürg Billeter <email address hidden>

 * vapi/glib-2.0.vapi:

 Fix sincos binding, patch by Jukka-Pekka Iivonen, fixes bug 568038

2356. By juergbi

2009-01-17 Jürg Billeter <email address hidden>

 * gobject/valaccodemethodcallmodule.vala:

 Fix crash when using lambda expressions with owned delegate
 parameters, fixes bug 566344

2355. By juergbi

2009-01-17 Jürg Billeter <email address hidden>

 * vala/valaenumvalue.vala:
 * vala/valasourcefile.vala:

 Add missing include for enum values, fixes bug 531724

Branch metadata

Branch format:
Branch format 6
Repository format:
Bazaar RepositoryFormatKnitPack6RichRoot (bzr 1.9)
This branch contains Public information 
Everyone can see this information.

Subscribers