-
Notifications
You must be signed in to change notification settings - Fork 142
[csharp] [courses_steps_csv] Kickstart base #29
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
Draft
Draft
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
20e7938
[csharp] [courses_steps_csv] Kickstart base
JavierCane 60ae8c8
[csharp] [courses_steps_csv] Test execution works 🎉
JavierCane 22297c6
[csharp] [courses_steps_csv] Test execution with mock works ✨
JavierCane f96cfbe
[csharp] [courses_steps_csv] Implement 01 base
ismanapa d881a3a
[csharp] [courses_steps_csv] Add 02 semantics
ismanapa 127aab0
[csharp] [courses_steps_csv] Provide semantics to video step type
JavierCane a34e08d
[csharp] [courses_steps_csv] Provide semantics to the overall CourseS...
JavierCane 76559e1
[csharp] [courses_steps_csv] [03_split_parsing_phase] Add base code r...
JavierCane b5c5410
[csharp] [courses_steps_csv] [03_split_parsing_phase] Duplicate loop ...
JavierCane 844007c
[csharp] [courses_steps_csv] Fix mini-typo in file name
JavierCane 8508df1
[csharp] [courses_steps_csv] [03_split_parsing_phase] Clean out the f...
JavierCane 326099d
[csharp] [courses_steps_csv] [03_split_parsing_phase] Refactor the se...
JavierCane 78123d8
[csharp] [courses_steps_csv] [03_split_parsing_phase] Encapsulate `St...
JavierCane 8ed79de
[csharp] [courses_steps_csv] [03_split_parsing_phase] Extract method ...
JavierCane 67e5ba0
[csharp] [courses_steps_csv] [04_split_serialization_phase] Add base ...
ismanapa d174ca5
[csharp] [courses_steps_csv] [04_split_serialization_phase] Change se...
ismanapa 83f192f
[csharp] [courses_steps_csv] [04_split_serialization_phase] Extract m...
ismanapa 25f413a
[csharp] [courses_steps_csv] Move FindCourseSteps from ParseCsv to Co...
ismanapa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[csharp] [courses_steps_csv] Test execution works 🎉
- Loading branch information
commit 60ae8c819b749f931a6a49620f89a7da82e1fc26
There are no files selected for viewing
8 changes: 0 additions & 8 deletions
examples/csharp/csharp-courses_steps_csv-01_base/src/CoursesStepsCsv/Class1.cs
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
...s/csharp/csharp-courses_steps_csv-01_base/src/CoursesStepsCsv/CourseStepsGetController.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| using System; | ||
|
|
||
| namespace CodelyTv.CoursesStepsCsv | ||
| { | ||
| public sealed class CourseStepsGetController | ||
| { | ||
| public string Lerele() | ||
| { | ||
| return "lerele"; | ||
| } | ||
| } | ||
| } |
16 changes: 16 additions & 0 deletions
...rp-courses_steps_csv-01_base/test/CoursesStepsCsv.Tests/CourseStepsGetControllerShould.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| using System; | ||
| using Xunit; | ||
|
|
||
| namespace CodelyTv.CoursesStepsCsv.Tests | ||
| { | ||
| public class CourseStepsGetControllerShould | ||
| { | ||
| [Fact] | ||
| public void ReturnAString() | ||
| { | ||
| var courseStepsGetController = new CourseStepsGetController(); | ||
|
|
||
| Assert.Equal("lerele", courseStepsGetController.Lerele()); | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
examples/csharp/csharp-courses_steps_csv-01_base/test/CoursesStepsCsv.Tests/UnitTest1.cs
Oops, something went wrong.
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.