Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
13 | 3 | 1 | 0.977 | class_member_declarations[3] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 13 | 17 | src/Iesi.Collections.Test/Generic/HashedSetFixture.cs |
2 | 13 | 14 | src/Iesi.Collections.Test/Generic/OrderedSetFixture.cs |
3 | 13 | 15 | src/Iesi.Collections.Test/Generic/SortedSetFixture.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> ); } } |
| ||||
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> ); } } |
| ||||
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> ); } } |
| |||
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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#5f498c40]] | SortedSet |
1 | 2 | [[#5f498c40]] | OrderedSet |
1 | 3 | [[#5f498c40]] | HashedSet |