virtualx-engine/tests
Rémi Verschelde 7da392bcc5
Don't return reference on copy assignment operators
We prefer to prevent using chained assignment (`T a = b = c = T();`) as this
can lead to confusing code and subtle bugs.

According to https://en.wikipedia.org/wiki/Assignment_operator_(C%2B%2B), C++
allows any arbitrary return type, so this is standard compliant.

This could be re-assessed if/when we have an actual need for a behavior more
akin to that of the C++ STL, for now this PR simply changes a handful of
cases which were inconsistent with the rest of the codebase (`void` return
type was already the most common case prior to this commit).
2021-11-30 16:26:29 +01:00
..
core Don't return reference on copy assignment operators 2021-11-30 16:26:29 +01:00
data Tests: Improve coverage for File::get_csv_line() 2021-08-04 11:53:21 +02:00
scene Fix code folding when end of block is unindented delimiter 2021-11-24 22:43:06 +00:00
servers Use "enum class" for input enums 2021-11-12 15:37:54 -06:00
SCsub Move and organize tests into subfolders 2021-11-07 00:43:31 -06:00
test_macros.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
test_macros.h Use "enum class" for input enums 2021-11-12 15:37:54 -06:00
test_main.cpp Move and organize tests into subfolders 2021-11-07 00:43:31 -06:00
test_main.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
test_tools.h Move and organize tests into subfolders 2021-11-07 00:43:31 -06:00
test_utils.cpp Move and organize tests into subfolders 2021-11-07 00:43:31 -06:00
test_utils.h Move and organize tests into subfolders 2021-11-07 00:43:31 -06:00
test_validate_testing.h Add unit tests for Array.pop_at() 2021-08-28 20:13:32 +08:00