mirror of
https://github.com/gnosygnu/xowa.git
synced 2025-06-13 12:54:14 +00:00
Refactor: Add _tst suffix to test classes.gfs [#427]
This commit is contained in:
parent
73cb63c493
commit
022d551760
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
public abstract class IoEngine_dir_basic_base {
|
public abstract class IoEngine_dir_basic_base_tst {
|
||||||
@Before public void setup() {
|
@Before public void setup() {
|
||||||
engine = engine_();
|
engine = engine_();
|
||||||
fx = IoEngineFxt.new_();
|
fx = IoEngineFxt.new_();
|
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
public class IoEngine_dir_basic_memory_tst extends IoEngine_dir_basic_base {
|
public class IoEngine_dir_basic_memory_tst extends IoEngine_dir_basic_base_tst {
|
||||||
@Override protected void setup_hook() {
|
@Override protected void setup_hook() {
|
||||||
root = Io_url_.mem_dir_("mem");
|
root = Io_url_.mem_dir_("mem");
|
||||||
} @Override protected IoEngine engine_() {return IoEngine_.Mem_init_();}
|
} @Override protected IoEngine engine_() {return IoEngine_.Mem_init_();}
|
||||||
|
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
public class IoEngine_dir_basic_system_tst extends IoEngine_dir_basic_base {
|
public class IoEngine_dir_basic_system_tst extends IoEngine_dir_basic_base_tst {
|
||||||
@Override protected void setup_hook() {
|
@Override protected void setup_hook() {
|
||||||
root = Tfds.RscDir.GenSubDir_nest("100_core", "ioEngineTest", "_temp");
|
root = Tfds.RscDir.GenSubDir_nest("100_core", "ioEngineTest", "_temp");
|
||||||
IoEngine_xrg_deleteDir.new_(root).Recur_().ReadOnlyFails_off().Exec();
|
IoEngine_xrg_deleteDir.new_(root).Recur_().ReadOnlyFails_off().Exec();
|
||||||
|
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
public abstract class IoEngine_dir_deep_base {
|
public abstract class IoEngine_dir_deep_base_tst {
|
||||||
@Before public void setup() {
|
@Before public void setup() {
|
||||||
engine = engine_();
|
engine = engine_();
|
||||||
fx = IoEngineFxt.new_();
|
fx = IoEngineFxt.new_();
|
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
public class IoEngine_dir_deep_memory_tst extends IoEngine_dir_deep_base {
|
public class IoEngine_dir_deep_memory_tst extends IoEngine_dir_deep_base_tst {
|
||||||
@Override protected void setup_hook() {
|
@Override protected void setup_hook() {
|
||||||
root = Io_url_.mem_dir_("mem/root");
|
root = Io_url_.mem_dir_("mem/root");
|
||||||
} @Override protected IoEngine engine_() {return IoEngine_.Mem_init_();}
|
} @Override protected IoEngine engine_() {return IoEngine_.Mem_init_();}
|
||||||
|
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
public class IoEngine_dir_deep_system_tst extends IoEngine_dir_deep_base {
|
public class IoEngine_dir_deep_system_tst extends IoEngine_dir_deep_base_tst {
|
||||||
@Override protected void setup_hook() {
|
@Override protected void setup_hook() {
|
||||||
root = Tfds.RscDir.GenSubDir_nest("100_core", "ioEngineTest", "_temp");
|
root = Tfds.RscDir.GenSubDir_nest("100_core", "ioEngineTest", "_temp");
|
||||||
IoEngine_xrg_deleteDir.new_(root).Recur_().ReadOnlyFails_off().Exec();
|
IoEngine_xrg_deleteDir.new_(root).Recur_().ReadOnlyFails_off().Exec();
|
||||||
|
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*; import gplx.core.texts.*;/*EncodingAdp_*/ import gplx.core.ios.streams.*;
|
import org.junit.*; import gplx.core.texts.*;/*EncodingAdp_*/ import gplx.core.ios.streams.*;
|
||||||
public abstract class IoEngine_fil_basic_base {
|
public abstract class IoEngine_fil_basic_base_tst {
|
||||||
@Before public void setup() {
|
@Before public void setup() {
|
||||||
engine = engine_();
|
engine = engine_();
|
||||||
fx = IoEngineFxt.new_();
|
fx = IoEngineFxt.new_();
|
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
public class IoEngine_fil_basic_memory_tst extends IoEngine_fil_basic_base {
|
public class IoEngine_fil_basic_memory_tst extends IoEngine_fil_basic_base_tst {
|
||||||
@Override protected IoEngine engine_() {return IoEngine_.Mem_init_();}
|
@Override protected IoEngine engine_() {return IoEngine_.Mem_init_();}
|
||||||
@Override protected void setup_hook() {
|
@Override protected void setup_hook() {
|
||||||
root = Io_url_.mem_dir_("mem");
|
root = Io_url_.mem_dir_("mem");
|
||||||
|
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
public class IoEngine_fil_basic_system_tst extends IoEngine_fil_basic_base {
|
public class IoEngine_fil_basic_system_tst extends IoEngine_fil_basic_base_tst {
|
||||||
@Override protected void setup_hook() {
|
@Override protected void setup_hook() {
|
||||||
root = Tfds.RscDir.GenSubDir_nest("100_core", "ioEngineTest", "_temp");
|
root = Tfds.RscDir.GenSubDir_nest("100_core", "ioEngineTest", "_temp");
|
||||||
fil = root.GenSubFil("fil.txt");
|
fil = root.GenSubFil("fil.txt");
|
||||||
|
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
public abstract class IoEngine_fil_xfer_base {
|
public abstract class IoEngine_fil_xfer_base_tst {
|
||||||
@Before public void setup() {
|
@Before public void setup() {
|
||||||
engine = engine_();
|
engine = engine_();
|
||||||
fx = IoEngineFxt.new_();
|
fx = IoEngineFxt.new_();
|
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
public class IoEngine_fil_xfer_memory_tst extends IoEngine_fil_xfer_base {
|
public class IoEngine_fil_xfer_memory_tst extends IoEngine_fil_xfer_base_tst {
|
||||||
@Override protected void setup_hook() {
|
@Override protected void setup_hook() {
|
||||||
root = Io_url_.mem_dir_("mem");
|
root = Io_url_.mem_dir_("mem");
|
||||||
} @Override protected IoEngine engine_() {return IoEngine_.Mem_init_();}
|
} @Override protected IoEngine engine_() {return IoEngine_.Mem_init_();}
|
||||||
|
@ -15,7 +15,7 @@ Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|||||||
*/
|
*/
|
||||||
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
package gplx.core.ios; import gplx.*; import gplx.core.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
public class IoEngine_fil_xfer_system_tst extends IoEngine_fil_xfer_base {
|
public class IoEngine_fil_xfer_system_tst extends IoEngine_fil_xfer_base_tst {
|
||||||
@Override protected void setup_hook() {
|
@Override protected void setup_hook() {
|
||||||
root = Tfds.RscDir.GenSubDir_nest("100_core", "ioEngineTest", "_temp");
|
root = Tfds.RscDir.GenSubDir_nest("100_core", "ioEngineTest", "_temp");
|
||||||
IoEngine_xrg_deleteDir.new_(root.OwnerDir()).Recur_().ReadOnlyFails_off().Exec();
|
IoEngine_xrg_deleteDir.new_(root.OwnerDir()).Recur_().ReadOnlyFails_off().Exec();
|
||||||
|
Loading…
Reference in New Issue
Block a user