GroupBys_mysql_tst.java 1.1 KB

1234567891011121314151617181920212223242526
  1. /*
  2. XOWA: the XOWA Offline Wiki Application
  3. Copyright (C) 2012-2017 gnosygnu@gmail.com
  4. XOWA is licensed under the terms of the General Public License (GPL) Version 3,
  5. or alternatively under the terms of the Apache License Version 2.0.
  6. You may use XOWA according to either of these licenses as is most appropriate
  7. for your project on a case-by-case basis.
  8. The terms of each license can be found in the source code repository:
  9. GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
  10. Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
  11. */
  12. package gplx.dbs.groupBys; import gplx.*; import gplx.dbs.*;
  13. import org.junit.*;
  14. public class GroupBys_mysql_tst extends GroupBys_base_tst {
  15. @Override protected Db_conn provider_() {return Db_conn_fxt.Mysql();}
  16. @Test public void GroupBy_1fld() {super.GroupBy_1fld_hook();}
  17. @Test public void GroupBy_2fld() {super.GroupBy_2fld_hook();}
  18. @Test public void Min() {super.MinMax_hook(true);}
  19. @Test public void Max() {super.MinMax_hook(false);}
  20. @Test public void Count() {super.Count_hook();}
  21. @Test public void Sum() {super.Sum_hook();}
  22. }