-
Notifications
You must be signed in to change notification settings - Fork 303
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
Махлонов Дмитрий #210
base: master
Are you sure you want to change the base?
Махлонов Дмитрий #210
Conversation
|
||
namespace TagCloud.TextReader; | ||
|
||
public record class TextReaderSettings(string Path, Encoding Encoding); |
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.
тут не совсем понял, там же не текст передается, а класс настроек в котором уже лежит путь до файла
|
||
public record BitmapGeneratorSettings | ||
{ | ||
public Size ImageSize { get; private set; } = new Size(1080, 1920); |
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.
Из-за private set настройки стали по сути бесполезны, ведь ими нельзя управлять. Почему решил сделать именно так?
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.
задумывал настройки неизменяемым объектом, если что-то нужно поменять - создаем новый объект настроек
[TestCase(new string[1] { "hello" }, new string[1] { "hello" }, TestName = "Not skip simple words")] | ||
[TestCase(new string[1] { "a" }, new string[0], TestName = "Skip articles")] | ||
[TestCase(new string[3] { "at", "in", "on" }, new string[0], TestName = "Skip prepositions")] | ||
[TestCase(new string[3] { "he", "she", "it" }, new string[0], TestName = "Skip pronouns")] | ||
[TestCase(new string[2] { "at", "since" }, new string[0], TestName = "Skip conjunctions")] |
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.
Выглядит как самостоятельные тесты, которые в качестве проверки используют один и тот же метод. Соглашусь, что между кейсами и отдельными методами тонкая грань и каждый видит по своему. Скорее комментарий на подумать
No description provided.