File: gitg-assert.vapi

package info (click to toggle)
gitg 44-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,244 kB
  • sloc: ansic: 1,636; ruby: 1,445; sh: 314; python: 261; xml: 57; makefile: 15
file content (11 lines) | stat: -rw-r--r-- 503 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
[CCode (cprefix = "Gitg", lower_case_prefix = "gitg_", cheader_filename = "gitg-assert.h")]
namespace Gitg.Test.Assert
{
	public static void assert_no_error(GLib.Error e);
	public static void assert_streq(string a, string b);
	public static void assert_inteq(int a, int b);
	public static void assert_booleq(bool a, bool b);
	public static void assert_uinteq(uint a, uint b);
	public static void assert_floateq(float a, float b);
	public static void assert_datetime(GLib.DateTime a, GLib.DateTime b);
}