-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ControlStructureKihon to the project
- Loading branch information
Showing
3 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,37 @@ | ||
using System; | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using Squire.Framework; | ||
using System.Collections.Generic; | ||
|
||
namespace Squire | ||
{ | ||
[TestClass] | ||
public class ControlStructureKihon : ControlStructuresKihonStructure | ||
{ | ||
|
||
protected override void Call_Hit_On_a_If_val_Is_True_Else_Call_Hit_On_b(bool val, ITarget a, ITarget b) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
protected override void Call_Hit_On_a_Once_For_Each_Member_Of_list(ITarget a, List<string> list) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
protected override void Call_Hit_On_a_While_a_IsValid_Is_True(ITarget a) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
protected override void n_Times_Call_Hit_On_a(int n, ITarget a) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
protected override void Call_Hit_On_a_Once_And_Continue_Until_IsValid_Is_False(ITarget a) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains 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
This file contains 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