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
| using Telerik.Everlive.Sdk.Core.Model.Base; | |
| namespace $1=SUGGEST_NAMESPACE()$ | |
| { | |
| $2=SELECT(public,internal,protected,private)$ class $3=GET_FILE_NAME()$ : DataItem | |
| { | |
| | | |
| } | |
| } |
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
| Bote: Create a C# code tempate, set the availability at "At type level" | |
| private $1$ _$2$; | |
| public $1$ $3$ | |
| { | |
| get | |
| { | |
| return _$2$; | |
| } |
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
| using System; | |
| using System.Collections.Generic; | |
| namespace GameNetworkInterfaces | |
| { | |
| public interface ICommonGameNetworkControl | |
| { | |
| Guid Login(string username, string password); | |
| bool Logout(Guid sessionToken); | |
| int PostScoreToLeaderboard(Guid sessionToken, Guid gameToken, int score); |
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
| using System; | |
| using System.Linq; | |
| using NUnit.Framework; | |
| namespace ThirtyDaysOfTDD.UnitTests | |
| { | |
| [TestFixture] | |
| public class StringUtilsTest | |
| { | |
| public void ShouldBeAbleToCountNumberOfLettersInSimpleSentence() |
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
| using System; | |
| using System.Linq; | |
| using NUnit.Framework; | |
| namespace ThirtyDaysOfTDD.UnitTests | |
| { | |
| [TestFixture] | |
| public class StringUtilsTest | |
| { | |
| [Test] |
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
| using System; | |
| uisng System.Collections.Generic; | |
| using System.Linq; | |
| uisng System.Text; | |
| using System.Threading.Tasks; | |
| namespace ThirtyDaysOfTDD.UnitTests | |
| { | |
| [TestFixture] | |
| public class StringUtilsTest |
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
| using System; | |
| using System.Linq; | |
| using NUnit.Framework; | |
| namespace ThirtyDaysOfTDD.UnitTests | |
| { | |
| [TestFixture] | |
| public class StringUtilsTest | |
| { | |
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
| namespace ThirtyDaysOfTDD.UnitTests | |
| { | |
| public class StringUtils | |
| { | |
| } | |
| } |
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
| using System; | |
| namespace ThirtyDaysOfTDD.UnitTests | |
| { | |
| public class StringUtils | |
| { | |
| public object FindNumberOfOccurences(string sentenceToScan, string characterToScanFor) | |
| { | |
| // TODO: Implement this method | |
| throw new NotImplementedException(); |
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
| using System; | |
| using System.Linq; | |
| using NUnit.Framework; | |
| namespace ThirtyDaysOfTDD.UnitTests | |
| { | |
| [TestFixture] | |
| public class StringUtilsTest | |
| { | |
| [Test] |
OlderNewer