Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unit test framework for Vala

I am thinking of developing an application using Vala. I would like to write unit tests for my code - but I have not (as yet) found any actively maintained unit test frameworks for Vala (e.g. Valadate).

Could anyone recommend a unit testing framework for use with Vala?

As an aside, given the relative 'newness' of Vala, can Vala be considered production ready - are there any known enterprise apps out there developed in Vala?

like image 500
Homunculus Reticulli Avatar asked May 02 '12 09:05

Homunculus Reticulli


1 Answers

There is a simple unit test facility already built into Vala: GLib.Test.

Unity, the user interface for the Ubuntu desktop, is partly written in Vala (the rest is C++.)

like image 173
ptomato Avatar answered Oct 18 '22 01:10

ptomato