├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASING.md ├── docs ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── _layouts │ └── default.html ├── css │ ├── layout.css │ └── primer-minimal.css ├── images │ ├── github.png │ ├── go.png │ ├── gomega.png │ ├── leakiee.png │ └── sponsor.png ├── index.md └── js │ └── docs.js ├── format ├── format.go ├── format_suite_test.go └── format_test.go ├── gbytes ├── buffer.go ├── buffer_test.go ├── gbuffer_suite_test.go ├── io_wrappers.go ├── io_wrappers_test.go ├── say_matcher.go └── say_matcher_test.go ├── gcustom ├── gcustom_suite_test.go ├── make_matcher.go └── make_matcher_test.go ├── gexec ├── _fixture │ └── firefly │ │ ├── main.go │ │ └── main_test.go ├── build.go ├── build_test.go ├── exit_matcher.go ├── exit_matcher_test.go ├── gexec_suite_test.go ├── prefixed_writer.go ├── prefixed_writer_test.go ├── session.go └── session_test.go ├── ghttp ├── handlers.go ├── protobuf │ ├── protobuf.go │ ├── simple_message.pb.go │ └── simple_message.proto ├── test_server.go ├── test_server_suite_test.go └── test_server_test.go ├── gleak ├── doc.go ├── ginkgo_parallel_client.go ├── gleak_suite_test.go ├── goroutine │ ├── doc.go │ ├── goroutine.go │ ├── goroutine_suite_test.go │ ├── goroutine_test.go │ └── stack.go ├── goroutines.go ├── goroutines_test.go ├── have_leaked_matcher.go ├── have_leaked_matcher_test.go ├── ignoring_creator.go ├── ignoring_creator_test.go ├── ignoring_goroutines.go ├── ignoring_goroutines_test.go ├── ignoring_in_backtrace.go ├── ignoring_in_backtrace_test.go ├── ignoring_top_function.go ├── ignoring_top_function_test.go ├── util.go └── util_test.go ├── gmeasure ├── cache.go ├── cache_test.go ├── enum_support.go ├── experiment.go ├── experiment_test.go ├── gmeasure_suite_test.go ├── measurement.go ├── measurement_test.go ├── rank.go ├── rank_test.go ├── stats.go ├── stats_test.go ├── stopwatch.go ├── stopwatch_test.go └── table │ └── table.go ├── go.mod ├── go.sum ├── gomega_dsl.go ├── gstruct ├── elements.go ├── elements_test.go ├── errors │ └── nested_types.go ├── fields.go ├── fields_test.go ├── gstruct_tests_suite_test.go ├── ignore.go ├── ignore_test.go ├── keys.go ├── keys_test.go ├── pointer.go ├── pointer_test.go └── types.go ├── internal ├── assertion.go ├── assertion_test.go ├── async_assertion.go ├── async_assertion_test.go ├── dsl_test.go ├── duration_bundle.go ├── duration_bundle_test.go ├── gomega.go ├── gomega_test.go ├── gutil │ ├── post_ioutil.go │ └── using_ioutil.go ├── internal_suite_test.go ├── polling_signal_error.go ├── polling_signal_error_test.go ├── testingtsupport │ └── testing_t_support_test.go └── vetoptdesc.go ├── matchers.go ├── matchers ├── and.go ├── and_test.go ├── assignable_to_type_of_matcher.go ├── assignable_to_type_of_matcher_test.go ├── attributes_slice.go ├── be_a_directory.go ├── be_a_directory_test.go ├── be_a_regular_file.go ├── be_a_regular_file_test.go ├── be_an_existing_file.go ├── be_an_existing_file_test.go ├── be_closed_matcher.go ├── be_closed_matcher_test.go ├── be_comparable_to_matcher.go ├── be_comparable_to_matcher_test.go ├── be_element_of_matcher.go ├── be_element_of_matcher_test.go ├── be_empty_matcher.go ├── be_empty_matcher_test.go ├── be_equivalent_to_matcher.go ├── be_equivalent_to_matcher_test.go ├── be_false_matcher.go ├── be_false_matcher_test.go ├── be_identical_to.go ├── be_identical_to_test.go ├── be_key_of_matcher.go ├── be_key_of_matcher_test.go ├── be_nil_matcher.go ├── be_nil_matcher_test.go ├── be_numerically_matcher.go ├── be_numerically_matcher_test.go ├── be_sent_matcher.go ├── be_sent_matcher_test.go ├── be_temporally_matcher.go ├── be_temporally_matcher_test.go ├── be_true_matcher.go ├── be_true_matcher_test.go ├── be_zero_matcher.go ├── be_zero_matcher_test.go ├── consist_of.go ├── consist_of_test.go ├── contain_element_matcher.go ├── contain_element_matcher_test.go ├── contain_elements_matcher.go ├── contain_elements_matcher_test.go ├── contain_substring_matcher.go ├── contain_substring_matcher_test.go ├── equal_matcher.go ├── equal_matcher_test.go ├── have_cap_matcher.go ├── have_cap_matcher_test.go ├── have_each_matcher.go ├── have_each_matcher_test.go ├── have_exact_elements.go ├── have_exact_elements_test.go ├── have_existing_field_matcher.go ├── have_existing_field_matcher_test.go ├── have_field.go ├── have_field_test.go ├── have_http_body_matcher.go ├── have_http_body_matcher_test.go ├── have_http_header_with_value_matcher.go ├── have_http_header_with_value_matcher_test.go ├── have_http_status_matcher.go ├── have_http_status_matcher_test.go ├── have_key_matcher.go ├── have_key_matcher_test.go ├── have_key_with_value_matcher.go ├── have_key_with_value_matcher_test.go ├── have_len_matcher.go ├── have_len_matcher_test.go ├── have_occurred_matcher.go ├── have_occurred_matcher_test.go ├── have_prefix_matcher.go ├── have_prefix_matcher_test.go ├── have_suffix_matcher.go ├── have_suffix_matcher_test.go ├── have_value.go ├── have_value_test.go ├── internal │ └── miter │ │ ├── miter_suite_test.go │ │ ├── type_support_iter.go │ │ ├── type_support_iter_test.go │ │ └── type_support_noiter.go ├── iter_support_test.go ├── match_error_matcher.go ├── match_error_matcher_test.go ├── match_json_matcher.go ├── match_json_matcher_test.go ├── match_regexp_matcher.go ├── match_regexp_matcher_test.go ├── match_xml_matcher.go ├── match_xml_matcher_test.go ├── match_yaml_matcher.go ├── match_yaml_matcher_test.go ├── matcher_tests_suite_test.go ├── not.go ├── not_test.go ├── or.go ├── or_test.go ├── panic_matcher.go ├── panic_matcher_test.go ├── receive_matcher.go ├── receive_matcher_test.go ├── satisfy_matcher.go ├── satisfy_matcher_test.go ├── semi_structured_data_support.go ├── succeed_matcher.go ├── succeed_matcher_test.go ├── support │ └── goraph │ │ ├── MIT.LICENSE │ │ ├── bipartitegraph │ │ ├── bipartitegraph.go │ │ ├── bipartitegraph_suite_test.go │ │ ├── bipartitegraph_test.go │ │ └── bipartitegraphmatching.go │ │ ├── edge │ │ └── edge.go │ │ ├── node │ │ └── node.go │ │ └── util │ │ └── util.go ├── test_data │ └── xml │ │ ├── sample_01.xml │ │ ├── sample_02.xml │ │ ├── sample_03.xml │ │ ├── sample_04.xml │ │ ├── sample_05.xml │ │ ├── sample_06.xml │ │ ├── sample_07.xml │ │ ├── sample_08.xml │ │ ├── sample_09.xml │ │ ├── sample_10.xml │ │ └── sample_11.xml ├── type_support.go ├── with_transform.go └── with_transform_test.go └── types └── types.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [onsi] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | TODO 7 | .vscode -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/RELEASING.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/css/layout.css -------------------------------------------------------------------------------- /docs/css/primer-minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/css/primer-minimal.css -------------------------------------------------------------------------------- /docs/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/images/github.png -------------------------------------------------------------------------------- /docs/images/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/images/go.png -------------------------------------------------------------------------------- /docs/images/gomega.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/images/gomega.png -------------------------------------------------------------------------------- /docs/images/leakiee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/images/leakiee.png -------------------------------------------------------------------------------- /docs/images/sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/images/sponsor.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/js/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/docs/js/docs.js -------------------------------------------------------------------------------- /format/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/format/format.go -------------------------------------------------------------------------------- /format/format_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/format/format_suite_test.go -------------------------------------------------------------------------------- /format/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/format/format_test.go -------------------------------------------------------------------------------- /gbytes/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gbytes/buffer.go -------------------------------------------------------------------------------- /gbytes/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gbytes/buffer_test.go -------------------------------------------------------------------------------- /gbytes/gbuffer_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gbytes/gbuffer_suite_test.go -------------------------------------------------------------------------------- /gbytes/io_wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gbytes/io_wrappers.go -------------------------------------------------------------------------------- /gbytes/io_wrappers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gbytes/io_wrappers_test.go -------------------------------------------------------------------------------- /gbytes/say_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gbytes/say_matcher.go -------------------------------------------------------------------------------- /gbytes/say_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gbytes/say_matcher_test.go -------------------------------------------------------------------------------- /gcustom/gcustom_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gcustom/gcustom_suite_test.go -------------------------------------------------------------------------------- /gcustom/make_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gcustom/make_matcher.go -------------------------------------------------------------------------------- /gcustom/make_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gcustom/make_matcher_test.go -------------------------------------------------------------------------------- /gexec/_fixture/firefly/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gexec/_fixture/firefly/main.go -------------------------------------------------------------------------------- /gexec/_fixture/firefly/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gexec/_fixture/firefly/main_test.go -------------------------------------------------------------------------------- /gexec/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gexec/build.go -------------------------------------------------------------------------------- /gexec/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gexec/build_test.go -------------------------------------------------------------------------------- /gexec/exit_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gexec/exit_matcher.go -------------------------------------------------------------------------------- /gexec/exit_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gexec/exit_matcher_test.go -------------------------------------------------------------------------------- /gexec/gexec_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gexec/gexec_suite_test.go -------------------------------------------------------------------------------- /gexec/prefixed_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gexec/prefixed_writer.go -------------------------------------------------------------------------------- /gexec/prefixed_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gexec/prefixed_writer_test.go -------------------------------------------------------------------------------- /gexec/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gexec/session.go -------------------------------------------------------------------------------- /gexec/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gexec/session_test.go -------------------------------------------------------------------------------- /ghttp/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/ghttp/handlers.go -------------------------------------------------------------------------------- /ghttp/protobuf/protobuf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/ghttp/protobuf/protobuf.go -------------------------------------------------------------------------------- /ghttp/protobuf/simple_message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/ghttp/protobuf/simple_message.pb.go -------------------------------------------------------------------------------- /ghttp/protobuf/simple_message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/ghttp/protobuf/simple_message.proto -------------------------------------------------------------------------------- /ghttp/test_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/ghttp/test_server.go -------------------------------------------------------------------------------- /ghttp/test_server_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/ghttp/test_server_suite_test.go -------------------------------------------------------------------------------- /ghttp/test_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/ghttp/test_server_test.go -------------------------------------------------------------------------------- /gleak/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/doc.go -------------------------------------------------------------------------------- /gleak/ginkgo_parallel_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/ginkgo_parallel_client.go -------------------------------------------------------------------------------- /gleak/gleak_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/gleak_suite_test.go -------------------------------------------------------------------------------- /gleak/goroutine/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/goroutine/doc.go -------------------------------------------------------------------------------- /gleak/goroutine/goroutine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/goroutine/goroutine.go -------------------------------------------------------------------------------- /gleak/goroutine/goroutine_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/goroutine/goroutine_suite_test.go -------------------------------------------------------------------------------- /gleak/goroutine/goroutine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/goroutine/goroutine_test.go -------------------------------------------------------------------------------- /gleak/goroutine/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/goroutine/stack.go -------------------------------------------------------------------------------- /gleak/goroutines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/goroutines.go -------------------------------------------------------------------------------- /gleak/goroutines_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/goroutines_test.go -------------------------------------------------------------------------------- /gleak/have_leaked_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/have_leaked_matcher.go -------------------------------------------------------------------------------- /gleak/have_leaked_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/have_leaked_matcher_test.go -------------------------------------------------------------------------------- /gleak/ignoring_creator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/ignoring_creator.go -------------------------------------------------------------------------------- /gleak/ignoring_creator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/ignoring_creator_test.go -------------------------------------------------------------------------------- /gleak/ignoring_goroutines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/ignoring_goroutines.go -------------------------------------------------------------------------------- /gleak/ignoring_goroutines_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/ignoring_goroutines_test.go -------------------------------------------------------------------------------- /gleak/ignoring_in_backtrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/ignoring_in_backtrace.go -------------------------------------------------------------------------------- /gleak/ignoring_in_backtrace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/ignoring_in_backtrace_test.go -------------------------------------------------------------------------------- /gleak/ignoring_top_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/ignoring_top_function.go -------------------------------------------------------------------------------- /gleak/ignoring_top_function_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/ignoring_top_function_test.go -------------------------------------------------------------------------------- /gleak/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/util.go -------------------------------------------------------------------------------- /gleak/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gleak/util_test.go -------------------------------------------------------------------------------- /gmeasure/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/cache.go -------------------------------------------------------------------------------- /gmeasure/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/cache_test.go -------------------------------------------------------------------------------- /gmeasure/enum_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/enum_support.go -------------------------------------------------------------------------------- /gmeasure/experiment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/experiment.go -------------------------------------------------------------------------------- /gmeasure/experiment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/experiment_test.go -------------------------------------------------------------------------------- /gmeasure/gmeasure_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/gmeasure_suite_test.go -------------------------------------------------------------------------------- /gmeasure/measurement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/measurement.go -------------------------------------------------------------------------------- /gmeasure/measurement_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/measurement_test.go -------------------------------------------------------------------------------- /gmeasure/rank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/rank.go -------------------------------------------------------------------------------- /gmeasure/rank_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/rank_test.go -------------------------------------------------------------------------------- /gmeasure/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/stats.go -------------------------------------------------------------------------------- /gmeasure/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/stats_test.go -------------------------------------------------------------------------------- /gmeasure/stopwatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/stopwatch.go -------------------------------------------------------------------------------- /gmeasure/stopwatch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/stopwatch_test.go -------------------------------------------------------------------------------- /gmeasure/table/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gmeasure/table/table.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/go.sum -------------------------------------------------------------------------------- /gomega_dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gomega_dsl.go -------------------------------------------------------------------------------- /gstruct/elements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/elements.go -------------------------------------------------------------------------------- /gstruct/elements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/elements_test.go -------------------------------------------------------------------------------- /gstruct/errors/nested_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/errors/nested_types.go -------------------------------------------------------------------------------- /gstruct/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/fields.go -------------------------------------------------------------------------------- /gstruct/fields_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/fields_test.go -------------------------------------------------------------------------------- /gstruct/gstruct_tests_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/gstruct_tests_suite_test.go -------------------------------------------------------------------------------- /gstruct/ignore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/ignore.go -------------------------------------------------------------------------------- /gstruct/ignore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/ignore_test.go -------------------------------------------------------------------------------- /gstruct/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/keys.go -------------------------------------------------------------------------------- /gstruct/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/keys_test.go -------------------------------------------------------------------------------- /gstruct/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/pointer.go -------------------------------------------------------------------------------- /gstruct/pointer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/pointer_test.go -------------------------------------------------------------------------------- /gstruct/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/gstruct/types.go -------------------------------------------------------------------------------- /internal/assertion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/assertion.go -------------------------------------------------------------------------------- /internal/assertion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/assertion_test.go -------------------------------------------------------------------------------- /internal/async_assertion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/async_assertion.go -------------------------------------------------------------------------------- /internal/async_assertion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/async_assertion_test.go -------------------------------------------------------------------------------- /internal/dsl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/dsl_test.go -------------------------------------------------------------------------------- /internal/duration_bundle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/duration_bundle.go -------------------------------------------------------------------------------- /internal/duration_bundle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/duration_bundle_test.go -------------------------------------------------------------------------------- /internal/gomega.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/gomega.go -------------------------------------------------------------------------------- /internal/gomega_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/gomega_test.go -------------------------------------------------------------------------------- /internal/gutil/post_ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/gutil/post_ioutil.go -------------------------------------------------------------------------------- /internal/gutil/using_ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/gutil/using_ioutil.go -------------------------------------------------------------------------------- /internal/internal_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/internal_suite_test.go -------------------------------------------------------------------------------- /internal/polling_signal_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/polling_signal_error.go -------------------------------------------------------------------------------- /internal/polling_signal_error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/polling_signal_error_test.go -------------------------------------------------------------------------------- /internal/testingtsupport/testing_t_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/testingtsupport/testing_t_support_test.go -------------------------------------------------------------------------------- /internal/vetoptdesc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/internal/vetoptdesc.go -------------------------------------------------------------------------------- /matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers.go -------------------------------------------------------------------------------- /matchers/and.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/and.go -------------------------------------------------------------------------------- /matchers/and_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/and_test.go -------------------------------------------------------------------------------- /matchers/assignable_to_type_of_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/assignable_to_type_of_matcher.go -------------------------------------------------------------------------------- /matchers/assignable_to_type_of_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/assignable_to_type_of_matcher_test.go -------------------------------------------------------------------------------- /matchers/attributes_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/attributes_slice.go -------------------------------------------------------------------------------- /matchers/be_a_directory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_a_directory.go -------------------------------------------------------------------------------- /matchers/be_a_directory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_a_directory_test.go -------------------------------------------------------------------------------- /matchers/be_a_regular_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_a_regular_file.go -------------------------------------------------------------------------------- /matchers/be_a_regular_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_a_regular_file_test.go -------------------------------------------------------------------------------- /matchers/be_an_existing_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_an_existing_file.go -------------------------------------------------------------------------------- /matchers/be_an_existing_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_an_existing_file_test.go -------------------------------------------------------------------------------- /matchers/be_closed_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_closed_matcher.go -------------------------------------------------------------------------------- /matchers/be_closed_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_closed_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_comparable_to_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_comparable_to_matcher.go -------------------------------------------------------------------------------- /matchers/be_comparable_to_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_comparable_to_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_element_of_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_element_of_matcher.go -------------------------------------------------------------------------------- /matchers/be_element_of_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_element_of_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_empty_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_empty_matcher.go -------------------------------------------------------------------------------- /matchers/be_empty_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_empty_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_equivalent_to_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_equivalent_to_matcher.go -------------------------------------------------------------------------------- /matchers/be_equivalent_to_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_equivalent_to_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_false_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_false_matcher.go -------------------------------------------------------------------------------- /matchers/be_false_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_false_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_identical_to.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_identical_to.go -------------------------------------------------------------------------------- /matchers/be_identical_to_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_identical_to_test.go -------------------------------------------------------------------------------- /matchers/be_key_of_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_key_of_matcher.go -------------------------------------------------------------------------------- /matchers/be_key_of_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_key_of_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_nil_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_nil_matcher.go -------------------------------------------------------------------------------- /matchers/be_nil_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_nil_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_numerically_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_numerically_matcher.go -------------------------------------------------------------------------------- /matchers/be_numerically_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_numerically_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_sent_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_sent_matcher.go -------------------------------------------------------------------------------- /matchers/be_sent_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_sent_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_temporally_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_temporally_matcher.go -------------------------------------------------------------------------------- /matchers/be_temporally_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_temporally_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_true_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_true_matcher.go -------------------------------------------------------------------------------- /matchers/be_true_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_true_matcher_test.go -------------------------------------------------------------------------------- /matchers/be_zero_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_zero_matcher.go -------------------------------------------------------------------------------- /matchers/be_zero_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/be_zero_matcher_test.go -------------------------------------------------------------------------------- /matchers/consist_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/consist_of.go -------------------------------------------------------------------------------- /matchers/consist_of_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/consist_of_test.go -------------------------------------------------------------------------------- /matchers/contain_element_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/contain_element_matcher.go -------------------------------------------------------------------------------- /matchers/contain_element_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/contain_element_matcher_test.go -------------------------------------------------------------------------------- /matchers/contain_elements_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/contain_elements_matcher.go -------------------------------------------------------------------------------- /matchers/contain_elements_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/contain_elements_matcher_test.go -------------------------------------------------------------------------------- /matchers/contain_substring_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/contain_substring_matcher.go -------------------------------------------------------------------------------- /matchers/contain_substring_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/contain_substring_matcher_test.go -------------------------------------------------------------------------------- /matchers/equal_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/equal_matcher.go -------------------------------------------------------------------------------- /matchers/equal_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/equal_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_cap_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_cap_matcher.go -------------------------------------------------------------------------------- /matchers/have_cap_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_cap_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_each_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_each_matcher.go -------------------------------------------------------------------------------- /matchers/have_each_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_each_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_exact_elements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_exact_elements.go -------------------------------------------------------------------------------- /matchers/have_exact_elements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_exact_elements_test.go -------------------------------------------------------------------------------- /matchers/have_existing_field_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_existing_field_matcher.go -------------------------------------------------------------------------------- /matchers/have_existing_field_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_existing_field_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_field.go -------------------------------------------------------------------------------- /matchers/have_field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_field_test.go -------------------------------------------------------------------------------- /matchers/have_http_body_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_http_body_matcher.go -------------------------------------------------------------------------------- /matchers/have_http_body_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_http_body_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_http_header_with_value_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_http_header_with_value_matcher.go -------------------------------------------------------------------------------- /matchers/have_http_header_with_value_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_http_header_with_value_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_http_status_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_http_status_matcher.go -------------------------------------------------------------------------------- /matchers/have_http_status_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_http_status_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_key_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_key_matcher.go -------------------------------------------------------------------------------- /matchers/have_key_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_key_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_key_with_value_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_key_with_value_matcher.go -------------------------------------------------------------------------------- /matchers/have_key_with_value_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_key_with_value_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_len_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_len_matcher.go -------------------------------------------------------------------------------- /matchers/have_len_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_len_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_occurred_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_occurred_matcher.go -------------------------------------------------------------------------------- /matchers/have_occurred_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_occurred_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_prefix_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_prefix_matcher.go -------------------------------------------------------------------------------- /matchers/have_prefix_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_prefix_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_suffix_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_suffix_matcher.go -------------------------------------------------------------------------------- /matchers/have_suffix_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_suffix_matcher_test.go -------------------------------------------------------------------------------- /matchers/have_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_value.go -------------------------------------------------------------------------------- /matchers/have_value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/have_value_test.go -------------------------------------------------------------------------------- /matchers/internal/miter/miter_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/internal/miter/miter_suite_test.go -------------------------------------------------------------------------------- /matchers/internal/miter/type_support_iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/internal/miter/type_support_iter.go -------------------------------------------------------------------------------- /matchers/internal/miter/type_support_iter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/internal/miter/type_support_iter_test.go -------------------------------------------------------------------------------- /matchers/internal/miter/type_support_noiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/internal/miter/type_support_noiter.go -------------------------------------------------------------------------------- /matchers/iter_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/iter_support_test.go -------------------------------------------------------------------------------- /matchers/match_error_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/match_error_matcher.go -------------------------------------------------------------------------------- /matchers/match_error_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/match_error_matcher_test.go -------------------------------------------------------------------------------- /matchers/match_json_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/match_json_matcher.go -------------------------------------------------------------------------------- /matchers/match_json_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/match_json_matcher_test.go -------------------------------------------------------------------------------- /matchers/match_regexp_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/match_regexp_matcher.go -------------------------------------------------------------------------------- /matchers/match_regexp_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/match_regexp_matcher_test.go -------------------------------------------------------------------------------- /matchers/match_xml_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/match_xml_matcher.go -------------------------------------------------------------------------------- /matchers/match_xml_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/match_xml_matcher_test.go -------------------------------------------------------------------------------- /matchers/match_yaml_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/match_yaml_matcher.go -------------------------------------------------------------------------------- /matchers/match_yaml_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/match_yaml_matcher_test.go -------------------------------------------------------------------------------- /matchers/matcher_tests_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/matcher_tests_suite_test.go -------------------------------------------------------------------------------- /matchers/not.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/not.go -------------------------------------------------------------------------------- /matchers/not_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/not_test.go -------------------------------------------------------------------------------- /matchers/or.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/or.go -------------------------------------------------------------------------------- /matchers/or_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/or_test.go -------------------------------------------------------------------------------- /matchers/panic_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/panic_matcher.go -------------------------------------------------------------------------------- /matchers/panic_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/panic_matcher_test.go -------------------------------------------------------------------------------- /matchers/receive_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/receive_matcher.go -------------------------------------------------------------------------------- /matchers/receive_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/receive_matcher_test.go -------------------------------------------------------------------------------- /matchers/satisfy_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/satisfy_matcher.go -------------------------------------------------------------------------------- /matchers/satisfy_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/satisfy_matcher_test.go -------------------------------------------------------------------------------- /matchers/semi_structured_data_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/semi_structured_data_support.go -------------------------------------------------------------------------------- /matchers/succeed_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/succeed_matcher.go -------------------------------------------------------------------------------- /matchers/succeed_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/succeed_matcher_test.go -------------------------------------------------------------------------------- /matchers/support/goraph/MIT.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/support/goraph/MIT.LICENSE -------------------------------------------------------------------------------- /matchers/support/goraph/bipartitegraph/bipartitegraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/support/goraph/bipartitegraph/bipartitegraph.go -------------------------------------------------------------------------------- /matchers/support/goraph/bipartitegraph/bipartitegraph_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/support/goraph/bipartitegraph/bipartitegraph_suite_test.go -------------------------------------------------------------------------------- /matchers/support/goraph/bipartitegraph/bipartitegraph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/support/goraph/bipartitegraph/bipartitegraph_test.go -------------------------------------------------------------------------------- /matchers/support/goraph/bipartitegraph/bipartitegraphmatching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/support/goraph/bipartitegraph/bipartitegraphmatching.go -------------------------------------------------------------------------------- /matchers/support/goraph/edge/edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/support/goraph/edge/edge.go -------------------------------------------------------------------------------- /matchers/support/goraph/node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/support/goraph/node/node.go -------------------------------------------------------------------------------- /matchers/support/goraph/util/util.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | import "math" 4 | 5 | func Odd(n int) bool { 6 | return math.Mod(float64(n), 2.0) == 1.0 7 | } 8 | -------------------------------------------------------------------------------- /matchers/test_data/xml/sample_01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/test_data/xml/sample_01.xml -------------------------------------------------------------------------------- /matchers/test_data/xml/sample_02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/test_data/xml/sample_02.xml -------------------------------------------------------------------------------- /matchers/test_data/xml/sample_03.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/test_data/xml/sample_03.xml -------------------------------------------------------------------------------- /matchers/test_data/xml/sample_04.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/test_data/xml/sample_04.xml -------------------------------------------------------------------------------- /matchers/test_data/xml/sample_05.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/test_data/xml/sample_05.xml -------------------------------------------------------------------------------- /matchers/test_data/xml/sample_06.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/test_data/xml/sample_06.xml -------------------------------------------------------------------------------- /matchers/test_data/xml/sample_07.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/test_data/xml/sample_07.xml -------------------------------------------------------------------------------- /matchers/test_data/xml/sample_08.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/test_data/xml/sample_08.xml -------------------------------------------------------------------------------- /matchers/test_data/xml/sample_09.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/test_data/xml/sample_09.xml -------------------------------------------------------------------------------- /matchers/test_data/xml/sample_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/test_data/xml/sample_10.xml -------------------------------------------------------------------------------- /matchers/test_data/xml/sample_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/test_data/xml/sample_11.xml -------------------------------------------------------------------------------- /matchers/type_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/type_support.go -------------------------------------------------------------------------------- /matchers/with_transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/with_transform.go -------------------------------------------------------------------------------- /matchers/with_transform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/matchers/with_transform_test.go -------------------------------------------------------------------------------- /types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsi/gomega/HEAD/types/types.go --------------------------------------------------------------------------------