blob: 86fe2354407092ca0055595345d6f62d822418cd (
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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
using Test;
namespace Ice
{
namespace defaultValue
{
public class Client : TestHelper
{
public override void run(string[] args)
{
AllTests.allTests(this);
}
public static int Main(string[] args)
{
return TestDriver.runTest<Client>(args);
}
}
}
}
|