@@ -1785,16 +1785,17 @@ fn fail(test_error_display: String) -> a {
1785
1785
do_fail ( test_error_display )
1786
1786
}
1787
1787
1788
- // If this returned an opaque Exn type then you couldn't mess up the
1789
- // `test_error_message.rescue` call later, but it could potentially conflict
1790
- // with non-gleeunit test frameworks, depending on how they deal with
1791
- // exceptions.
1792
- pub fn failwith (
1788
+ fn failwith (
1793
1789
original_value original_value : a,
1794
1790
shrunk_value shrunk_value : a,
1795
1791
shrink_steps shrink_steps : Int ,
1796
1792
error_msg error_msg : String ,
1797
1793
) -> b {
1794
+ // If this returned an opaque Exn type then you couldn't mess up the
1795
+ // `test_error_message.rescue` call later, but it could potentially conflict
1796
+ // with non-gleeunit test frameworks, depending on how they deal with
1797
+ // exceptions.
1798
+
1798
1799
new_test_error (
1799
1800
original_value : original_value ,
1800
1801
shrunk_value : shrunk_value ,
@@ -1869,20 +1870,23 @@ fn regexp_first_submatch(
1869
1870
}
1870
1871
1871
1872
/// Mainly for asserting values in qcheck internal tests.
1873
+ ///
1872
1874
fn test_error_message_get_original_value (
1873
1875
test_error_str : String ,
1874
1876
) -> Result ( String , String ) {
1875
1877
regexp_first_submatch ( pattern : "original_value: (.+?);" , in : test_error_str )
1876
1878
}
1877
1879
1878
1880
/// Mainly for asserting values in qcheck internal tests.
1881
+ ///
1879
1882
fn test_error_message_get_shrunk_value (
1880
1883
test_error_str : String ,
1881
1884
) -> Result ( String , String ) {
1882
1885
regexp_first_submatch ( pattern : "shrunk_value: (.+?);" , in : test_error_str )
1883
1886
}
1884
1887
1885
1888
/// Mainly for asserting values in qcheck internal tests.
1889
+ ///
1886
1890
fn test_error_message_get_shrink_steps (
1887
1891
test_error_str : String ,
1888
1892
) -> Result ( String , String ) {
@@ -1892,6 +1896,11 @@ fn test_error_message_get_shrink_steps(
1892
1896
/// This function should only be called to rescue a function that may call
1893
1897
/// `failwith` at some point to raise an exception. It will likely
1894
1898
/// raise otherwise.
1899
+ ///
1900
+ /// This function is internal. Breaking changes may occur without a major
1901
+ /// version update.
1902
+ ///
1903
+ @ internal
1895
1904
pub fn rescue ( thunk : fn ( ) -> a) -> Result ( a, TestErrorMessage ) {
1896
1905
case rescue_error ( thunk ) {
1897
1906
Ok ( a ) -> Ok ( a )
@@ -1917,18 +1926,18 @@ pub fn rescue(thunk: fn() -> a) -> Result(a, TestErrorMessage) {
1917
1926
1918
1927
@ external ( erlang , "qcheck_ffi" , "rescue_error" )
1919
1928
@ external ( javascript , "./qcheck_ffi.mjs" , "rescue_error" )
1920
- pub fn rescue_error ( f : fn ( ) -> a) -> Result ( a, String )
1929
+ fn rescue_error ( f : fn ( ) -> a) -> Result ( a, String )
1921
1930
1922
1931
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1923
1932
// MARK: Try
1924
1933
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1925
1934
1926
- pub type Try ( a) {
1935
+ type Try ( a) {
1927
1936
NoPanic ( a)
1928
1937
Panic ( exception . Exception )
1929
1938
}
1930
1939
1931
- pub fn try ( f : fn ( ) -> a) -> Try ( a) {
1940
+ fn try ( f : fn ( ) -> a) -> Try ( a) {
1932
1941
case exception . rescue ( fn ( ) { f ( ) } ) {
1933
1942
Ok ( y ) -> NoPanic ( y )
1934
1943
Error ( exn ) -> Panic ( exn )
0 commit comments