summaryrefslogtreecommitdiff
path: root/tests/ApplicationTest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ApplicationTest.cs')
-rw-r--r--tests/ApplicationTest.cs39
1 files changed, 19 insertions, 20 deletions
diff --git a/tests/ApplicationTest.cs b/tests/ApplicationTest.cs
index 3db4db8..9a1ce97 100644
--- a/tests/ApplicationTest.cs
+++ b/tests/ApplicationTest.cs
@@ -13,24 +13,23 @@ 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);
- }
-}
+ [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);
+ }
+}