Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Попов Захар #29
base: master
Are you sure you want to change the base?
Попов Захар #29
Changes from 3 commits
5792a2e
c9ffa05
dfab891
a5d9504
7ab2e4f
9349963
e3e2f02
8897bec
7b65b8a
d23a259
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Может быть есть ещё недостатки?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Предположу, что так же недостатком является то, что данный метод является рекурсивным и возможна ситуация, при которой цепочка из царей превысит глубину рекурсии. Знаю, что это одна из проблем питона - малая глубина рекурсии по умолчанию. Шарп вроде за таким не замечен. Так же будет забиваться стек вызовов методов. Будут накладные расходы на постановку/снятие контекста метода в/из стек вызовов.
Я сам вообще не люблю писать рекурсивные методы, хоть они и придают порой элегантность коду. В подавляющем большинстве случаем пишу с использованием цикла. Мне кажется это нагляднее.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Действительно, для большой вложенности могут возникнуть проблемы с конечным стеком потока. Но лишино ли решение с Fluent Assertions такой проблемы? Там точно цикл внутри а не подобная рекурсия?
Кроме того, конкретно при тестировании прошлая запись тестов имеет ряд других, более значимых недостатков, хотелось бы услышать их
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Если я всё правильно понял, то исходя из документации, решение с Fluent Assertions на самом деле так же рекурсивно. По умолчанию глубина рекурсии выставлена как 10.
По недостаткам решения, могу ещё предложить следующее:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ага, в прошлом решении, если произойдёт ошибка, то по ней будет не понятно, что было причиной различия и придётся дебажить каждый упавший тест отдельно - это муторно.
Второй пункт не совсем понял, мы всегда ожидаем какого-то царя. Если ожидаем
null
, вероятно так необходимо. Например, если в базе данных мы не ожидаем увидеть такого-то царя, то он может бытьnull
;)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Про второй пункт, мне это просто кажется логически неверно - нам пришли вообще не цари, оба null. Тогда тест вернёт true. Не цари равны.
Наверное я тут больше копаю в ту сторону, что до AreEqual не должно вообще доходить null, это должно отлавливаться заранее.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Но ведь в тестах у нас есть два значения:
В этом плане не понятно, что такое "пришли не цари". Так как один параметр контролируется тестом.
Если имелось ввиду, что вместо царя со значением
null
пришла королева со значениемnull
, то это не допускается статической типизацией языка :)А также вопрос, разве сейчас два
null
сравниваются по-другому через Fluent Assertions?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Да, что-то я действительно тут переусложнил - мне это свойственно!