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.Collections.Generic; | |
| using System.Linq; | |
| using Microsoft.VisualStudio.TestTools.UnitTesting; | |
| namespace SurrogatePairDetection | |
| { | |
| [TestClass] | |
| public class SurrogatePairDetection | |
| { | |
| [TestMethod] |
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 Microsoft.VisualStudio.TestTools.UnitTesting; | |
| using Newtonsoft.Json.Linq; | |
| using Newtonsoft.Json; | |
| using TweetSharp; | |
| namespace TweetSharpProblem | |
| { | |
| [TestClass] | |
| public class UserDeserializationTest |
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
| class Address { } | |
| class PhoneNumber { } | |
| //Service 1 | |
| class ContactInformations | |
| { | |
| public ContactInformation PhoneNumbers() | |
| { | |
| return new ContactInformation | |
| { |
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
| public class ClassUnderTest | |
| { | |
| public static void ReturnIncrementedAfter500ms(int value, Action<int> result) | |
| { | |
| Task.Factory.StartNew(() => | |
| { | |
| Thread.Sleep(500); | |
| result(value - 1);//BUG | |
| }); | |
| } |
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
| halllowelt.wordpress.comusing System; | |
| using System.Net; | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| using System.Windows.Documents; | |
| using System.Windows.Ink; | |
| using System.Windows.Input; | |
| using System.Windows.Media; | |
| using System.Windows.Media.Animation; | |
| using System.Windows.Shapes; |