30 lines
483 B
C#
30 lines
483 B
C#
using NUnit.Framework;
|
|
using System.Collections;
|
|
using System;
|
|
|
|
|
|
namespace UniJSON
|
|
{
|
|
public class GenericCallUtilityTests
|
|
{
|
|
class Sample
|
|
{
|
|
public int Value
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public void Set(int value)
|
|
{
|
|
Value = value;
|
|
}
|
|
|
|
public int Get(int _)
|
|
{
|
|
return Value;
|
|
}
|
|
}
|
|
}
|
|
}
|