2021-03-16 15:45:19 +03:00
|
|
|
from Standard.Base import all
|
2021-02-02 15:31:33 +03:00
|
|
|
|
2021-03-16 15:45:19 +03:00
|
|
|
import Standard.Test
|
2020-10-29 08:48:48 +03:00
|
|
|
|
2021-06-24 13:42:24 +03:00
|
|
|
import project.Semantic.Any_Spec
|
|
|
|
import project.Semantic.Case_Spec
|
|
|
|
import project.Semantic.Deep_Export.Spec as Deep_Export_Spec
|
|
|
|
import project.Semantic.Error_Spec
|
|
|
|
import project.Semantic.Import_Loop.Spec as Import_Loop_Spec
|
|
|
|
import project.Semantic.Meta_Spec
|
|
|
|
import project.Semantic.Names_Spec
|
|
|
|
import project.Semantic.Runtime_Spec
|
2020-10-29 08:48:48 +03:00
|
|
|
|
2021-06-24 13:42:24 +03:00
|
|
|
import project.Semantic.Java_Interop_Spec
|
|
|
|
import project.Semantic.Js_Interop_Spec
|
|
|
|
import project.Semantic.Python_Interop_Spec
|
|
|
|
import project.Semantic.R_Interop_Spec
|
2021-03-05 14:18:37 +03:00
|
|
|
|
2021-06-24 13:42:24 +03:00
|
|
|
import project.Data.Array_Spec
|
|
|
|
import project.Data.Interval_Spec
|
|
|
|
import project.Data.Json_Spec
|
|
|
|
import project.Data.List_Spec
|
|
|
|
import project.Data.Locale_Spec
|
|
|
|
import project.Data.Map_Spec
|
|
|
|
import project.Data.Maybe_Spec
|
|
|
|
import project.Data.Noise.Generator_Spec as Noise_Generator_Spec
|
|
|
|
import project.Data.Noise_Spec
|
|
|
|
import project.Data.Numbers_Spec
|
|
|
|
import project.Data.Ordering_Spec
|
|
|
|
import project.Data.Range_Spec
|
|
|
|
import project.Data.Text_Spec
|
|
|
|
import project.Data.Time.Spec as Time_Spec
|
|
|
|
import project.Data.Vector_Spec
|
2021-08-23 14:09:51 +03:00
|
|
|
import project.Data.Text.Regex_Spec
|
|
|
|
import project.Data.Text.Default_Regex_Engine_Spec
|
|
|
|
import project.Data.Text.Span_Spec
|
2021-02-02 15:31:33 +03:00
|
|
|
|
2021-06-24 13:42:24 +03:00
|
|
|
import project.Network.Http.Header_Spec as Http_Header_Spec
|
|
|
|
import project.Network.Http.Request_Spec as Http_Request_Spec
|
|
|
|
import project.Network.Http_Spec
|
|
|
|
import project.Network.Uri_Spec
|
2021-02-02 15:31:33 +03:00
|
|
|
|
2021-06-24 13:42:24 +03:00
|
|
|
import project.System.File_Spec
|
|
|
|
import project.System.Process_Spec
|
2020-10-29 08:48:48 +03:00
|
|
|
|
2021-06-24 13:42:24 +03:00
|
|
|
import project.Examples_Spec
|
2021-05-06 18:55:26 +03:00
|
|
|
|
2021-09-18 15:48:13 +03:00
|
|
|
Main = Test.Suite.run_main <|
|
2021-02-02 15:31:33 +03:00
|
|
|
Any_Spec.spec
|
2021-03-17 19:34:53 +03:00
|
|
|
Array_Spec.spec
|
2020-11-19 16:28:03 +03:00
|
|
|
Case_Spec.spec
|
2020-11-11 19:42:44 +03:00
|
|
|
Deep_Export_Spec.spec
|
|
|
|
Error_Spec.spec
|
2021-05-06 18:55:26 +03:00
|
|
|
Examples_Spec.spec
|
2020-11-11 19:42:44 +03:00
|
|
|
File_Spec.spec
|
2020-12-03 13:41:21 +03:00
|
|
|
Http_Header_Spec.spec
|
|
|
|
Http_Request_Spec.spec
|
2020-11-11 19:42:44 +03:00
|
|
|
Http_Spec.spec
|
2020-10-29 08:48:48 +03:00
|
|
|
Import_Loop_Spec.spec
|
2020-11-18 16:03:28 +03:00
|
|
|
Interval_Spec.spec
|
2020-11-11 19:42:44 +03:00
|
|
|
Java_Interop_Spec.spec
|
2021-02-08 20:14:54 +03:00
|
|
|
Js_Interop_Spec.spec
|
2020-11-11 19:42:44 +03:00
|
|
|
Json_Spec.spec
|
|
|
|
List_Spec.spec
|
2021-02-18 18:00:19 +03:00
|
|
|
Locale_Spec.spec
|
2020-11-11 19:42:44 +03:00
|
|
|
Map_Spec.spec
|
2021-02-02 15:31:33 +03:00
|
|
|
Maybe_Spec.spec
|
2020-11-11 19:42:44 +03:00
|
|
|
Meta_Spec.spec
|
2020-10-29 08:48:48 +03:00
|
|
|
Names_Spec.spec
|
2020-12-03 13:41:21 +03:00
|
|
|
Noise_Generator_Spec.spec
|
2020-11-18 16:03:28 +03:00
|
|
|
Noise_Spec.spec
|
2020-11-11 19:42:44 +03:00
|
|
|
Numbers_Spec.spec
|
2020-11-23 15:19:45 +03:00
|
|
|
Ordering_Spec.spec
|
2020-10-29 08:48:48 +03:00
|
|
|
Process_Spec.spec
|
2021-03-05 14:18:37 +03:00
|
|
|
Python_Interop_Spec.spec
|
2021-03-09 18:19:05 +03:00
|
|
|
R_Interop_Spec.spec
|
2020-11-11 19:42:44 +03:00
|
|
|
Range_Spec.spec
|
2021-08-23 14:09:51 +03:00
|
|
|
Default_Regex_Engine_Spec.spec
|
|
|
|
Regex_Spec.spec
|
|
|
|
Runtime_Spec.spec
|
|
|
|
Span_Spec.spec
|
2020-10-29 08:48:48 +03:00
|
|
|
Text_Spec.spec
|
|
|
|
Time_Spec.spec
|
|
|
|
Uri_Spec.spec
|
2020-11-11 19:42:44 +03:00
|
|
|
Vector_Spec.spec
|
2021-08-23 14:09:51 +03:00
|
|
|
|