2011-06-10 14:05:32 +02:00
|
|
|
using System;
|
2011-07-19 11:04:08 +02:00
|
|
|
using System.Collections.Generic;
|
2011-06-10 14:05:32 +02:00
|
|
|
namespace Tester.Misc
|
|
|
|
{
|
2011-07-19 11:04:08 +02:00
|
|
|
|
2011-06-10 14:05:32 +02:00
|
|
|
public class Misc
|
|
|
|
{
|
|
|
|
public Misc ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-07-19 11:04:08 +02:00
|
|
|
|
|
|
|
public void GroupConfiguration(IEnumerable<Misc> groups)
|
|
|
|
{
|
|
|
|
IList<Misc> Groups = new List<Misc>(groups);
|
|
|
|
}
|
|
|
|
|
2011-06-10 14:05:32 +02:00
|
|
|
private int TestProperty
|
|
|
|
{
|
|
|
|
get;set;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Init (string[] args)
|
|
|
|
{
|
|
|
|
// Test incrementing a property
|
|
|
|
TestProperty = 0;
|
|
|
|
TestProperty++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|