summaryrefslogtreecommitdiff
path: root/tests/ApplicationTest.cs
blob: 6f5e4023641b980e1f4345ad2927b1758115d8a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// ApplicationTest.cs: NUnit Test Suite for gstreamer-sharp
//
// Authors:
//   Aaron Bockover (abockover@novell.com)
//
// (C) 2006 Novell, Inc.
//

using System;
using NUnit.Framework;

[TestFixture]
public class ApplicationTest
{
    [Test]
    public void Init()
    {
        Gst.Application.Init();
        Gst.Application.Deinit();
    }
    
    [Test]
    public void InitArgs()
    {
        string [] args = { "arg_a", "arg_b" };
        Gst.Application.Init("gstreamer-sharp-test", ref args);
        Gst.Application.Deinit();
    }
    
    [Test]
    public void InitArgsCheck()
    {
        string [] args = { "arg_a", "arg_b" };
        Gst.Application.InitCheck("gstreamer-sharp-test", ref args);
        Gst.Application.Deinit();
    }
}