Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 4 | 2 | 0.980 | non_pp_embedded_statement |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 54 | src/NHibernate.Test/GenericTest/Methods/Fixture.cs |
2 | 6 | 53 | src/NHibernate.Test/NHSpecificTest/NH1018/NH1018Fixture.cs |
3 | 6 | 58 | src/NHibernate.Test/NHSpecificTest/NH335/Fixture.cs |
4 | 6 | 33 | src/NHibernate.Test/NHSpecificTest/NH552/Fixture.cs |
| ||||
using (ISession session = OpenSession()) using (ITransaction tx = session.BeginTransaction()) { session.Delete( "from Many"); session.Delete( "from One"); tx.Commit(); } |
| ||||
using (ISession session = OpenSession()) using (ITransaction tx = session.BeginTransaction()) { session.Delete("from Employee"); session.Delete("from Employer"); tx.Commit(); } |
| ||||
using (ISession session = OpenSession()) using (ITransaction tx = session.BeginTransaction()) { session.Delete("from AbcThing"); session.Delete("from OtherThing"); tx.Commit(); } |
| ||||
using (ISession session = OpenSession()) using (ITransaction tx = session.BeginTransaction()) { session.Delete("from Answer"); session.Delete("from Question"); tx.Commit(); } |
| |||
using (ISession session = OpenSession()) using (ITransaction tx = session.BeginTransaction()) { session.Delete( [[#variable2d5ce240]]); session.Delete( [[#variable2d5ce1c0]]); tx.Commit(); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#2d5ce240]] | "from Many" |
1 | 2 | [[#2d5ce240]] | "from Employee" |
1 | 3 | [[#2d5ce240]] | "from Answer" |
1 | 4 | [[#2d5ce240]] | "from AbcThing" |
2 | 1 | [[#2d5ce1c0]] | "from One" |
2 | 2 | [[#2d5ce1c0]] | "from Employer" |
2 | 3 | [[#2d5ce1c0]] | "from Question" |
2 | 4 | [[#2d5ce1c0]] | "from OtherThing" |