Giter Site home page Giter Site logo

objecttotest's People

Contributors

deniszhukovski avatar dzhukovski avatar eugenepuntus avatar maxshustov avatar stanislau avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

objecttotest's Issues

ToTestWellFormattedTests.cs:32: 60m/DEV Implement rule:...

The puzzle 5-d0ce5b4b from #5 has to be resolved:

* @todo #5 60m/DEV Implement rule: Lambdas are always from new string.

The puzzle was created by Denis Zhukovski on 28-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:256-258: Make CircularReferenceDetection...

The puzzle 60m-90fcc3c8 from #60m has to be resolved:

* @todo #:60m/DEV Make CircularReferenceDetection test to be green.
* Now the circular references between the objects are not detected. It would
* be nice to fix the issue

The puzzle was created by @DenisZhukovski on 26-Aug-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectSharedArgumentsTests.cs:70-84:...

The puzzle 12-2adcea6a from #12 has to be resolved:

* @todo #12:60m/DEV ObjectSharedArguments class should return as a string the piepce
* of code that initializes the shared object arguments. For example:
* var user = new User("user name");
* var withUser = new WithUserArgument(
* user,
* new WithUserPublicProperty
* {
* User = user
* }
* );
*
* ToString method should return:
* var user = new User("user name");
*
* If object has no shared objects in its internal state the method should return empty string.

The puzzle was created by Denis Zhukovski on 05-Sep-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:242: Make CtorWithDictionaryIntString test...

The puzzle 30m-3d61cad0 from #30m has to be resolved:

* @todo #:30m/DEV Make CtorWithDictionaryIntString test to be green. Dictionary argument type constructors are not supported at the moment. Need to add the support.

The puzzle was created by @MaxShustov on 29-Aug-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:156-166: Proper declaration format is...

The puzzle 60m-ac1f5531 from #60m has to be resolved:

* @todo #:60m/DEV Proper declaration format is expected. It would be nice to start each constructor argument on its own line with proper intend
* new WithTwoClassParamAndIntParam(
* new WithClassParam(
* new EmptyObject()
* ),
* new WithClassAndIntParams(
* 42,
* new EmptyObject()
* ),
* 42
* )

The puzzle was created by @DenisZhukovski on 25-Aug-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:11-20: 60m/DEV Implement...

The puzzle 5-cd4cb888 from #5 has to be resolved:

* @todo #5 60m/DEV Implement proper formatting. Base puzzle with all rules for references.
* The rules are following:
* 1. if there is new operator in arguments, all arguments should be properly formatted.
* 2. spaces between arguments are required: (0, 0, 1) instead of (0,0,1).
* 3. Lambdas are always from new string.
* 4. Indention is 4 spaces.
* 5. Inner properties should be from separate lines.
* 6. Lines bigger than 80 characters should be properly formatted.
* 7. All arrays should be placed with proper formatting.
* 8. Dictionary should be formatted with separate set of rules.

The puzzle was created by Denis Zhukovski on 28-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:306-308: Make...

The puzzle 11-7e3ee3ee from #11 has to be resolved:

* @todo #11:60m/DEV Make ComplexCircularReferenceDetection test to be green.
* Now the circular references between the objects are not detected. It would
* be nice to fix the issue

The puzzle was created by @MaxShustov on 18-Sep-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectAsConstructor.cs:10-11: Need to create...

The puzzle 60m-92217446 from #60m has to be resolved:

* @todo #60m/ARCH Need to create Interface/Class diagram that describes the solution on high level
* Ideally this diagram should be put into Docs folder of the repository and referenced in Readme file.

The puzzle was created by Denis Zhukovski on 05-Sep-22.

role: ARCH.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:260-261: Make WithActionArgument test to...

The puzzle 60m-1c83a860 from #60m has to be resolved:

* @todo #:60m/DEV Make WithActionArgument test to be green.
* Now constructor with Action arguments are not supported. Need to be fixed

The puzzle was created by @MaxShustov on 28-Sep-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

DelegateConstructorTests.cs:86-87: Make...

The puzzle 43-1f7b68b6 from #43 has to be resolved:

* @todo #43:60m/DEV Make ActionCtorWith2ParamsAndBody test to be green.
* Now DelegateConstructor does not support delegate body generation.

The puzzle was created by @DenisZhukovski on 26-Oct-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:24: 60m/DEV Implement rule:...

The puzzle 5-aba79164 from #5 has to be resolved:

* @todo #5 60m/DEV Implement rule: if there is new operator in arguments, all arguments should be properly formatted.

The puzzle was created by Denis Zhukovski on 28-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectExtensionsTests.cs:13-14: Make HasCircularReference...

The puzzle 38-1a440fb4 from #38 has to be resolved:

* @todo #38:60m/DEV Make HasCircularReference test to be green.
* HasCircularReference always returns false but the method should be able

The puzzle was created by Maksym Shustov on 30-Sep-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectSharedArgumentsTests.cs:37: ObjectSharedArguments...

The puzzle 12-77aedd72 from #12 has to be resolved:

* @todo #12:60m/DEV ObjectSharedArguments should be able to support nulls for shared objects.

The puzzle was created by Denis Zhukovski on 05-Sep-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:28: 60m/DEV Implement rule:...

The puzzle 5-fee780ba from #5 has to be resolved:

* @todo #5 60m/DEV Implement rule: spaces between arguments are required: (0, 0, 1) instead of (0,0,1).

The puzzle was created by Denis Zhukovski on 28-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectSharedArguments.cs:29-30: Make a code refactoring...

The puzzle 12-bf97e2bc from #12 has to be resolved:

* @todo #12:60m/DEV Make a code refactoring for this property.
* The property is too big and it looks like Loops for Fields and Properties are pretty the same.

The puzzle was created by Denis Zhukovski on 05-Sep-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:261-262: Make...

The puzzle 60m-52d1da88 from #60m has to be resolved:

* @todo #:60m/DEV Make OtherObjectMethodReferenceAsArgument test to be green.
* Now DelegateConstructor does not support object method as reference.

The puzzle was created by @DenisZhukovski on 08-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:245-246: Make CtorWithFuncArgument test to...

The puzzle 60m-833141ed from #60m has to be resolved:

* @todo #:60m/DEV Make CtorWithFuncArgument test to be green.
* Now constructor with Func arguments are not supported. Need to be fixed

The puzzle was created by @MaxShustov on 28-Sep-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectDependenciesTraceTests.cs:34-35: 60m/DEV...

The puzzle 64-52c16d09 from #64 has to be resolved:

* @todo #64 60m/DEV ObjectDependenciesTrace does not support recursive analyzes for invalid constructor
* arguments. The test should be fixed and recursive analyzes implemented.

The puzzle was created by @DenisZhukovski on 30-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:197: Make WithGenericArgument test to be...

The puzzle 60m-213b64df from #60m has to be resolved:

* @todo #:60m/DEV Make WithGenericArgument test to be green. Generic type constructors are not supported at the moment. Need to add the support.

The puzzle was created by @DenisZhukovski on 25-Aug-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:40: 60m/DEV Implement rule:...

The puzzle 5-de36cb8b from #5 has to be resolved:

* @todo #5 60m/DEV Implement rule: Inner properties should be from separate lines.

The puzzle was created by Denis Zhukovski on 28-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:11-21: 60m/DEV Implement...

The puzzle 5-9186b939 from #5 has to be resolved:

* @todo #5 60m/DEV Implement proper formatting. Base puzzle with all rules for references.
* The rules are following:
* 0. API should be compatible with old one.
* 1. if there is new operator in arguments, all arguments should be properly formatted.
* 2. spaces between arguments are required: (0, 0, 1) instead of (0,0,1).
* 3. Lambdas are always from new string.
* 4. Indention is 4 spaces.
* 5. Inner properties should be from separate lines.
* 6. Lines bigger than 80 characters should be properly formatted.
* 7. All arrays should be placed with proper formatting.
* 8. Dictionary should be formatted with separate set of rules.

The puzzle was created by @Stanislau on 29-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectAsConstructor.cs:15: 60m/ARCH Need to complete the...

The puzzle 20-65f0b286 from #20 has to be resolved:

* @todo #20 60m/ARCH Need to complete the diagram ObjectToTest/docs/ObjectToTest.drawio

The puzzle was created by @MaxShustov on 24-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectExtensionsTests.cs:34-36: Make...

The puzzle 38-547e639d from #38 has to be resolved:

* @todo #38:60m/DEV Make HasComplexCircularReference test to be green.
* HasCircularReference method should be able to detect the situation when object has a circular reference
* but not direct. Instead it uses the object that uses the other one which uses the original in its field or property.

The puzzle was created by Maksym Shustov on 30-Sep-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectExtensions.cs:21-22: 60m/ARCH: Can we extend...

The puzzle 85-c9c8d051 from #85 has to be resolved:

* @todo #85 60m/ARCH: Can we extend ObjectAsConstructor to be able to check if object created with issues?
* It is needed to define whether we need to format the code at all.

The puzzle was created by Stanislau on 30-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectSharedArguments.cs:54-55: Make a code refactoring...

The puzzle 12-25ff0d1d from #12 has to be resolved:

* @todo #12:60m/DEV Make a code refactoring for this method.
* The method is too big and complex. It looks like the Loops for Fields and Properties are pretty the same.

The puzzle was created by Denis Zhukovski on 05-Sep-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:25: 60m/DEV Describe...

The puzzle 80-2d20ab77 from #80 has to be resolved:

* @todo #80 60m/DEV Describe formatting rules in readme file.

The puzzle was created by @Stanislau on 29-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:274-276: Make TheSameObjectDetection test...

The puzzle 60m-ac170357 from #60m has to be resolved:

* @todo #:60m/DEV Make TheSameObjectDetection test to be green.
* Now the same object detection is not implemented. It would
* be nice to fix the issue.

The puzzle was created by @DenisZhukovski on 26-Aug-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:489: Adjust this test with...

The puzzle 5-f769c879 from #5 has to be resolved:

The puzzle was created by Denis Zhukovski on 28-Nov-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectDependenciesTrace.cs:17: Need to implement object...

The puzzle 60m-ed924176 from #60m has to be resolved:

* @todo #60m/ARCH Need to implement object dependencies tracing logic.

The puzzle was created by @MaxShustov on 24-Nov-22.

role: ARCH.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:52: 60m/DEV Implement rule:...

The puzzle 5-3fa6ea22 from #5 has to be resolved:

* @todo #5 60m/DEV Implement rule: Dictionary should be formatted with separate set of rules.

The puzzle was created by Denis Zhukovski on 28-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:36: 60m/DEV Implement rule:...

The puzzle 5-1eddb7ad from #5 has to be resolved:

* @todo #5 60m/DEV Implement rule: Indention is 4 spaces.

The puzzle was created by Denis Zhukovski on 28-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectSharedArguments.cs:22-34: The method should try to...

The puzzle 12-615eb024 from #12 has to be resolved:

* @todo #12:60m/DEV The method should try to find the same argument inside
* the target object and check if its the shared one. It means the argument is used more than 1 time inside
* the target object fileds or properties:
* The example below shows sych case when user object is the shared one.
* var user = new User("user name");
* var withUser = new WithUserArgument(
* user,
* new WithUserPublicProperty
* {
* User = user
* }
* );
* The Test: ObjectSharedArgumentsTests.SharedArgument should be green

The puzzle was created by Denis Zhukovski on 05-Sep-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectExtensions.cs:20-22: 60m/DEV Define approach for...

The puzzle 80-788167ac from #80 has to be resolved:

* @todo #80 60m/DEV Define approach for formatting.
* Possible option:
* IDecompiledCodeAsString|string object.ToString(IFormat), where IFormat can be abstract interface with implementation for each formatting rule.

The puzzle was created by Stanislau on 29-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:56: 60m/DEV In...

The puzzle 5-38b4cde6 from #5 has to be resolved:

* @todo #5 60m/DEV In ToTestWellFormattedTests:

The puzzle was created by Denis Zhukovski on 28-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectSharedArgumentsTests.cs:86-89: Make...

The puzzle 11-e081f816 from #11 has to be resolved:

* @todo #11:60m/DEV Make CircularReferenceInitProperties test to be green.
* Now the circular references not initialized properly and does not detect that shared object
* has circular reference in its fields or properties.
* It would nice to fix the test.

The puzzle was created by Maksym Shustov on 18-Sep-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:209: Make WithIEnumerableInt test to be...

The puzzle 60m-1ef53fb8 from #60m has to be resolved:

* @todo #:60m/DEV Make WithIEnumerableInt test to be green. Collection argument type constructors are not supported at the moment. Need to add the support.

The puzzle was created by @DenisZhukovski on 25-Aug-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

DelegateConstructorTests.cs:21-22: Make FuncCtor test to...

The puzzle 43-e812cfe8 from #43 has to be resolved:

* @todo #43:60m/DEV Make FuncCtor test to be green.
* Now DelegateConstructor does not support delegate body generation.

The puzzle was created by @DenisZhukovski on 26-Oct-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:48: 60m/DEV Implement rule:...

The puzzle 5-8f445bc5 from #5 has to be resolved:

* @todo #5 60m/DEV Implement rule: All arrays should be placed with proper formatting.

The puzzle was created by Denis Zhukovski on 28-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ObjectSharedArgumentsTests.cs:13-18: Improve the test:...

The puzzle 12-d42c7aa9 from #12 has to be resolved:

* @todo #12:60m/DEV Improve the test: Ideally the test should compare the result that returned by Argument method
* with some manually created argument that wraps the original object.
* Assert.Equal(
* new Argument(user),
* new ObjectSharedArguments(withUser).Argument(user)
* );

The puzzle was created by @DenisZhukovski on 05-Sep-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

InvalidConstructorTests.cs:15-17: 60m/DEV...

The puzzle 64-b89c1043 from #64 has to be resolved:

* @todo #64 60m/DEV InvalidConstructor returns Arguments as empty list
* The class should be able to calculate the target object constructor
* and return the list of its arguments

The puzzle was created by @DenisZhukovski on 30-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

DelegateConstructorTests.cs:37-38: Make...

The puzzle 43-7268d76e from #43 has to be resolved:

* @todo #43:60m/DEV Make FuncCtorWith1Param test to be green.
* Now DelegateConstructor does not support delegate body generation.

The puzzle was created by @DenisZhukovski on 26-Oct-22.

Estimate: 60 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:309-310: Make SingletonAsArgument test to...

The puzzle 60m-de6b1700 from #60m has to be resolved:

* @todo #:60m/DEV Make SingletonAsArgument test to be green.
* Now the singletons are not detected. It would be nice to fix the issue

The puzzle was created by @DenisZhukovski on 07-Sep-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

WellFormattedCode.cs:4-6: 60m/DEV Decompose code...

The puzzle 85-ab01c3f2 from #85 has to be resolved:

* @todo #85 60m/DEV Decompose code formatting to create syntax tree from code.
* Better to parse code and format it properly. It isolates existing functionality.
* Probably need to invest some time to find existing ability to create syntax tree from code.

The puzzle was created by Stanislau on 30-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:230: Make IncorrectArgumentsClass test to...

The puzzle 60m-ac3331af from #60m has to be resolved:

* @todo #:60m/DEV Make IncorrectArgumentsClass test to be green.

The puzzle was created by @DenisZhukovski on 25-Aug-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestTests.cs:340-341: Warning comment when object has...

The puzzle 60m-c0ddede6 from #60m has to be resolved:

* @todo #:60m/LEAD Warning comment when object has an internal state that can not be initialized through the constructor.
* It means that the state of an object has been changed after its been created and it's happened through the method or event

The puzzle was created by @MaxShustov on 17-Sep-22.

role: LEAD.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:44: 60m/DEV Implement rule:...

The puzzle 5-47d4c793 from #5 has to be resolved:

* @todo #5 60m/DEV Implement rule: Lines bigger than 80 characters should be properly formatted.

The puzzle was created by Denis Zhukovski on 28-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

ToTestWellFormattedTests.cs:62: 60m/DEV Implement a test...

The puzzle 5-a4cd6989 from #5 has to be resolved:

private readonly ITestOutputHelper _output;

The puzzle was created by Denis Zhukovski on 28-Nov-22.

role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.