CloneSet767


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
13310.977class_member_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11317
src/Iesi.Collections.Test/Generic/HashedSetFixture.cs
21314
src/Iesi.Collections.Test/Generic/OrderedSetFixture.cs
31315
src/Iesi.Collections.Test/Generic/SortedSetFixture.cs
Clone Instance
1
Line Count
13
Source Line
17
Source File
src/Iesi.Collections.Test/Generic/HashedSetFixture.cs

                protected override ISet<string> CreateInstance()
                {
                        return new HashedSet<string> ();
                }

                protected override ISet<string> CreateInstance(ICollection<string> init)
                {
                        return new HashedSet<string> (init);
                }

                protected override Type ExpectedType
                {
                        get { return typeof(HashedSet<string> );
                            }
                }



Clone Instance
2
Line Count
13
Source Line
14
Source File
src/Iesi.Collections.Test/Generic/OrderedSetFixture.cs

                protected override ISet<string> CreateInstance()
                {
                        return new OrderedSet<string> ();
                }

                protected override ISet<string> CreateInstance(ICollection<string> init)
                {
                        return new OrderedSet<string> (init);
                }

                protected override Type ExpectedType
                {
                        get { return typeof(OrderedSet<string> );
                            }
                }



Clone Instance
3
Line Count
13
Source Line
15
Source File
src/Iesi.Collections.Test/Generic/SortedSetFixture.cs

                protected override ISet<string> CreateInstance()
                {
                        return new SortedSet<string> ();
                }

                protected override ISet<string> CreateInstance(ICollection<string> init)
                {
                        return new SortedSet<string> (init);
                }

                protected override Type ExpectedType
                {
                        get { return typeof(SortedSet<string> );
                            }
                }



Clone AbstractionParameter Count: 1Parameter Bindings

protected override ISet<string> CreateInstance()
{
   return new [[#variable5f498c40]]<string> ();
}

protected override ISet<string> CreateInstance(ICollection<string> init)
{
   return new [[#variable5f498c40]]<string> (init);
}

protected override Type ExpectedType
{
   get
   {
      return typeof( [[#variable5f498c40]]<string> );
   }
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#5f498c40]]
SortedSet 
12[[#5f498c40]]
OrderedSet 
13[[#5f498c40]]
HashedSet