Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[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
JavierCane wants to merge 18 commits into main
base: main
Choose a base branch
Loading
from csharp-divergent_change
Draft
Show file tree
Hide file tree
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 Apr 22, 2021
60ae8c8
[csharp] [courses_steps_csv] Test execution works 🎉
JavierCane Apr 22, 2021
22297c6
[csharp] [courses_steps_csv] Test execution with mock works ✨
JavierCane Apr 22, 2021
f96cfbe
[csharp] [courses_steps_csv] Implement 01 base
ismanapa Apr 26, 2021
d881a3a
[csharp] [courses_steps_csv] Add 02 semantics
ismanapa Apr 26, 2021
127aab0
[csharp] [courses_steps_csv] Provide semantics to video step type
JavierCane Apr 26, 2021
a34e08d
[csharp] [courses_steps_csv] Provide semantics to the overall CourseS...
JavierCane Apr 26, 2021
76559e1
[csharp] [courses_steps_csv] [03_split_parsing_phase] Add base code r...
JavierCane Apr 26, 2021
b5c5410
[csharp] [courses_steps_csv] [03_split_parsing_phase] Duplicate loop ...
JavierCane Apr 26, 2021
844007c
[csharp] [courses_steps_csv] Fix mini-typo in file name
JavierCane Apr 26, 2021
8508df1
[csharp] [courses_steps_csv] [03_split_parsing_phase] Clean out the f...
JavierCane Apr 26, 2021
326099d
[csharp] [courses_steps_csv] [03_split_parsing_phase] Refactor the se...
JavierCane Apr 26, 2021
78123d8
[csharp] [courses_steps_csv] [03_split_parsing_phase] Encapsulate `St...
JavierCane Apr 26, 2021
8ed79de
[csharp] [courses_steps_csv] [03_split_parsing_phase] Extract method ...
JavierCane Apr 26, 2021
67e5ba0
[csharp] [courses_steps_csv] [04_split_serialization_phase] Add base ...
ismanapa Apr 26, 2021
d174ca5
[csharp] [courses_steps_csv] [04_split_serialization_phase] Change se...
ismanapa Apr 26, 2021
83f192f
[csharp] [courses_steps_csv] [04_split_serialization_phase] Extract m...
ismanapa Apr 26, 2021
25f413a
[csharp] [courses_steps_csv] Move FindCourseSteps from ParseCsv to Co...
ismanapa Apr 26, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[csharp] [courses_steps_csv] Test execution works 🎉
  • Loading branch information
JavierCane committed Apr 22, 2021
commit 60ae8c819b749f931a6a49620f89a7da82e1fc26
View file Open in desktop

This file was deleted.

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";
}
}
}
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());
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>CodelyTv.CoursesStepsCsv.Tests</RootNamespace>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand All @@ -19,4 +20,8 @@
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\CoursesStepsCsv\CoursesStepsCsv.csproj" />
</ItemGroup>

</Project>
View file Open in desktop

This file was deleted.

AltStyle によって変換されたページ (->オリジナル) /