diff --git a/doc/src/base/base.md b/doc/src/base/base.md index 0eac8913542daf..3cb71ace680e6a 100644 --- a/doc/src/base/base.md +++ b/doc/src/base/base.md @@ -243,6 +243,7 @@ Core.Module Core.Function Base.hasmethod Core.applicable +Base.isambiguous Core.invoke Base.@invoke Base.invokelatest diff --git a/stdlib/Test/docs/src/index.md b/stdlib/Test/docs/src/index.md index 82922773f899b0..510654c69ecd18 100644 --- a/stdlib/Test/docs/src/index.md +++ b/stdlib/Test/docs/src/index.md @@ -102,6 +102,7 @@ or could not be evaluated due to an error, the test set will then throw a `TestS ```@docs Test.@testset +Test.TestSetException ``` We can put our tests for the `foo(x)` function in a test set: @@ -295,6 +296,18 @@ And using that testset looks like: end ``` +## Test utilities + +```@docs +Test.GenericArray +Test.GenericDict +Test.GenericOrder +Test.GenericSet +Test.GenericString +Test.detect_ambiguities +Test.detect_unbound_args +``` + ```@meta DocTestSetup = nothing ```