Example #1
0
			public _Closure_31(BasicQLinTestCase.Cat cat)
			{
				this.cat = cat;
				{
					cat.Feed();
				}
			}
Example #2
0
		public virtual IList ListOf(BasicQLinTestCase.Cat[] cats)
		{
			return null;
		}
Example #3
0
		public virtual void AssertQuery(IList expected, BasicQLinTestCase.IPet pet, string
			 name)
		{
			IteratorAssert.SameContent(expected, Db().From(pet.GetType()).Where(pet.Name()).Equal
				(name).Select());
		}
Example #4
0
			public virtual void Spouse(BasicQLinTestCase.Cat spouse)
			{
				this.spouse = spouse;
				spouse.spouse = this;
			}
Example #5
0
		private IList Family(BasicQLinTestCase.Cat father, BasicQLinTestCase.Cat mother, 
			BasicQLinTestCase.Cat[] children)
		{
			IList list = new ArrayList();
			list.Add(father);
			list.Add(mother);
			for (int childIndex = 0; childIndex < children.Length; ++childIndex)
			{
				BasicQLinTestCase.Cat child = children[childIndex];
				child.father = father;
				child.mother = mother;
				father.children.Add(child);
				mother.children.Add(child);
			}
			father.Spouse(mother);
			return list;
		}