mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
31 lines
602 B
C#
31 lines
602 B
C#
//
|
|
// 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();
|
|
}
|
|
|
|
[Test]
|
|
public void InitArgs() {
|
|
string [] args = { "arg_a", "arg_b" };
|
|
Gst.Application.Init ("gstreamer-sharp-test", ref args);
|
|
}
|
|
|
|
[Test]
|
|
public void InitArgsCheck() {
|
|
string [] args = { "arg_a", "arg_b" };
|
|
Gst.Application.InitCheck ("gstreamer-sharp-test", ref args);
|
|
}
|
|
}
|