summaryrefslogtreecommitdiff
path: root/src/tests/efl_mono/BasicDirection.cs
blob: 2c5995c939a91efb55bdca44ef6bbdbe78aa75fe (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
using System;
using System.Runtime.InteropServices;
using System.Linq;

namespace TestSuite
{

class TestIntDirections
{
    public static void simple_out()
    {
        int original = 1984;
        int received;
        var t = new Dummy.TestObject();

        t.IntOut(original, out received);

        Test.AssertEquals(-original, received);
    }

    /*
    public static void simple_ptr_out()
    {
        int original = 1984;
        int received;
        var t = new Dummy.TestObject();

        t.IntPtrOut(original, out received);

        Test.AssertEquals(original*2, received);
    }
    */
}

}