Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
fixing issue #36 for empty bindings removed test for mysql and sqlserver
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cullimore committed Feb 11, 2019
1 parent aa1d1cf commit 281ee23
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.manywho.services.sql.suites;

import com.manywho.services.sql.DbConfigurationTest;
import com.manywho.services.sql.suites.common.ZeroColumnTableTest;
import com.manywho.services.sql.suites.common.controllers.data.LoadTest;
import com.manywho.services.sql.suites.common.controllers.data.LoadWithoutOrderBy;
import com.manywho.services.sql.suites.common.controllers.data.MultipleKeyTest;
Expand All @@ -21,7 +20,6 @@
SaveTest.class,
DescribeTest.class,
LoadWithoutOrderBy.class, // not for SqlServer
ZeroColumnTableTest.class,
// mysql
CapitalLetterTest.class,
AutoIncrementTest.class,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package com.manywho.services.sql.suites;

import com.manywho.services.sql.DbConfigurationTest;
import com.manywho.services.sql.suites.common.ZeroColumnTableTest;
import com.manywho.services.sql.suites.common.controllers.data.LoadTest;
import com.manywho.services.sql.suites.common.controllers.data.LoadWithoutOrderBy;
import com.manywho.services.sql.suites.common.controllers.data.MultipleKeyTest;
import com.manywho.services.sql.suites.common.controllers.data.SaveTest;
import com.manywho.services.sql.suites.common.controllers.describe.DescribeTest;
import com.manywho.services.sql.suites.postgresql.data.*;
import com.manywho.services.sql.suites.postgresql.ZeroColumnTableTest;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
Expand All @@ -20,8 +20,8 @@
SaveTest.class,
DescribeTest.class,
LoadWithoutOrderBy.class, // not for SqlServer
ZeroColumnTableTest.class,
//postgresql
ZeroColumnTableTest.class,
DateTimeTest.class,
UuidTest.class,
CapitalLetterTest.class,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.manywho.services.sql.suites;

import com.manywho.services.sql.DbConfigurationTest;
import com.manywho.services.sql.suites.common.ZeroColumnTableTest;
import com.manywho.services.sql.suites.common.controllers.data.LoadTest;
import com.manywho.services.sql.suites.common.controllers.data.MultipleKeyTest;
import com.manywho.services.sql.suites.common.controllers.data.SaveTest;
Expand All @@ -20,7 +19,6 @@
MultipleKeyTest.class,
SaveTest.class,
DescribeTest.class,
ZeroColumnTableTest.class,
//sql server
DateTimeTest.class,
CapitalLetterTest.class,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.manywho.services.sql.suites.common;
package com.manywho.services.sql.suites.postgresql;

import com.manywho.services.sql.ServiceFunctionalTest;
import com.manywho.services.sql.DbConfigurationTest;
Expand Down

0 comments on commit 281ee23

Please sign in to comment.