CloneSet21


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
402320.979compilation_unit
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/AxionDialectTest.java
2391
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/DaffodilDialectTest.java
3401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/DB2DialectTest.java
4401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/DerbyDialectTest.java
5391
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/FirebirdDialectTest.java
6391
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/FrontBaseDialectTest.java
7401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/H2DialectTest.java
8401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/HADBDialectTest.java
9401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/HSQLDialectTest.java
10401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/InformixDialectTest.java
11401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/IngresDialectTest.java
12401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/InterbaseDialectTest.java
13391
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/MAXDBDialectTest.java
14401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/McKoiDialectTest.java
152319
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/MySQL5DialectExtTest.java
162219
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/MySQLDialectTest.java
17401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/Oracle9iDialectTest.java
182219
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/PointbaseDialectTest.java
19401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/PostgreSQLDialectTest.java
20391
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/ProgressDialectTest.java
21401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/SQLServerDialectTest.java
22401
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/SybaseDialectTest.java
23391
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/TimesTenDialectTest.java
Next
Last
Clone Instance
1
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/AxionDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class AxionDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new AxionDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
2
Line Count
39
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/DaffodilDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class DaffodilDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new DaffodilDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
3
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/DB2DialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class DB2DialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new DB2DialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
4
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/DerbyDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class DerbyDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new DerbyDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
5
Line Count
39
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/FirebirdDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2005 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class FirebirdDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new FirebirdDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
6
Line Count
39
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/FrontBaseDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class FrontBaseDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new FrontBaseDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
7
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/H2DialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class H2DialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new H2DialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
8
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/HADBDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class HADBDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new HADBDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
9
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/HSQLDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class HSQLDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new HSQLDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
10
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/InformixDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class InformixDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new InformixDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
11
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/IngresDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class IngresDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new IngresDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
12
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/InterbaseDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class InterbaseDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new InterbaseDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
13
Line Count
39
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/MAXDBDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class MAXDBDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new MAXDBDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
14
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/McKoiDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class McKoiDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new McKoiDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
15
Line Count
23
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/MySQL5DialectExtTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

public class MySQL5DialectExtTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new MySQL5DialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
16
Line Count
22
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/MySQLDialectTest.java

/*
 * Copyright (C) 2005 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

public class MySQLDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new MySQLDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
17
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/Oracle9iDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class Oracle9iDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new OracleDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
18
Line Count
22
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/PointbaseDialectTest.java

/*
 * Copyright (C) 2005 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

public class PointbaseDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new PointbaseDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
19
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/PostgreSQLDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class PostgreSQLDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new PostgreSQLDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
20
Line Count
39
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/ProgressDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class ProgressDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new ProgressDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
21
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/SQLServerDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class SQLServerDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new SQLServerDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
22
Line Count
40
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/SybaseDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class SybaseDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new SybaseDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




First
Previous
Clone Instance
23
Line Count
39
Source Line
1
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/fw/dialects/TimesTenDialectTest.java

package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class TimesTenDialectTest extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new TimesTenDialectExt();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Clone AbstractionParameter Count: 2Parameter Bindings

/*
 * Copyright (C) 2005 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.fw.dialects;

import org.junit.After;
import org.junit.Before;

/*
 * Copyright (C) 2007 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
/*
 * Copyright (C) 2005 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
public class [[#variable19b77680]]extends AbstractDialectExtTest {
  @Before public void setUp() throws Exception {
    classUnderTest = new [[#variable19b77620]]();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}


 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#19b77680]]
AxionDialectTest 
12[[#19b77680]]
DaffodilDialectTest 
13[[#19b77680]]
DB2DialectTest 
14[[#19b77680]]
DerbyDialectTest 
15[[#19b77680]]
FirebirdDialectTest 
16[[#19b77680]]
FrontBaseDialectTest 
17[[#19b77680]]
H2DialectTest 
18[[#19b77680]]
HADBDialectTest 
19[[#19b77680]]
HSQLDialectTest 
110[[#19b77680]]
InformixDialectTest 
111[[#19b77680]]
IngresDialectTest 
112[[#19b77680]]
InterbaseDialectTest 
113[[#19b77680]]
MAXDBDialectTest 
114[[#19b77680]]
McKoiDialectTest 
115[[#19b77680]]
MySQL5DialectExtTest 
116[[#19b77680]]
MySQLDialectTest 
117[[#19b77680]]
Oracle9iDialectTest 
118[[#19b77680]]
PointbaseDialectTest 
119[[#19b77680]]
PostgreSQLDialectTest 
120[[#19b77680]]
ProgressDialectTest 
121[[#19b77680]]
SQLServerDialectTest 
122[[#19b77680]]
SybaseDialectTest 
123[[#19b77680]]
TimesTenDialectTest 
21[[#19b77620]]
AxionDialectExt 
22[[#19b77620]]
DaffodilDialectExt 
23[[#19b77620]]
DB2DialectExt 
24[[#19b77620]]
DerbyDialectExt 
25[[#19b77620]]
FirebirdDialectExt 
26[[#19b77620]]
FrontBaseDialectExt 
27[[#19b77620]]
H2DialectExt 
28[[#19b77620]]
HADBDialectExt 
29[[#19b77620]]
HSQLDialectExt 
210[[#19b77620]]
InformixDialectExt 
211[[#19b77620]]
IngresDialectExt 
212[[#19b77620]]
InterbaseDialectExt 
213[[#19b77620]]
MAXDBDialectExt 
214[[#19b77620]]
McKoiDialectExt 
215[[#19b77620]]
MySQL5DialectExt 
216[[#19b77620]]
MySQLDialectExt 
217[[#19b77620]]
OracleDialectExt 
218[[#19b77620]]
PointbaseDialectExt 
219[[#19b77620]]
PostgreSQLDialectExt 
220[[#19b77620]]
ProgressDialectExt 
221[[#19b77620]]
SQLServerDialectExt 
222[[#19b77620]]
SybaseDialectExt 
223[[#19b77620]]
TimesTenDialectExt