blob: d50277096b8eb2c1b76ac7d4aeb3917a318223c1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Apache.Ignite.Core.Tests.Cache.Platform
{
using System;
using Apache.Ignite.Core.Cache.Configuration;
using NUnit.Framework;
/// <summary>
/// Test class.
/// </summary>
public class Foo : IEquatable<Foo>
{
public Foo(int bar = 0)
{
Bar = bar;
}
[QuerySqlField]
public readonly int Bar;
[QuerySqlField]
public readonly string TestName = TestContext.CurrentContext.Test.Name;
public override string ToString()
{
return String.Format("Foo [Bar={0}, TestName={1}]", Bar, TestName);
}
public bool Equals(Foo other)
{
return other != null && Bar == other.Bar && TestName == other.TestName;
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
if (ReferenceEquals(this, obj)) return true;
if (obj.GetType() != this.GetType()) return false;
return Equals((Foo) obj);
}
public override int GetHashCode()
{
unchecked
{
return (Bar * 397) ^ (TestName != null ? TestName.GetHashCode() : 0);
}
}
}
}