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
| // Start with a nUnit Test case | |
| [TestCase(Foo.Bar, Foo.Baz, Foo.Qux)] | |
| [TestCase(Foo.Baz, Foo.Qux, Foo.Bar)] | |
| public void MyTest(Foo givenArg, Foo whenArg, Foo thenArg) | |
| { | |
| this.Given(_ => GivenSomething(givenArg)) | |
| .When(_ => WhenSomething(whenArg)) | |
| .Then(_ => ThenSomething(thenArg)) | |
| .BDDfy(); | |
| } |
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
| Scenario: Fluent can be used with examples | |
| Given method taking <example int> | |
| Given method taking <prop 1> | |
| Given a different method with random arg 2 | |
| Given a different method with <prop 2> | |
| When method using <example string> | |
| Then all is good | |
| Examples: |
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 ReflectiveExamples | |
| { | |
| public int Start { get; set; } | |
| public int Eat { get; set; } | |
| public int Left { get; set; } | |
| //Scenario Outline: eating | |
| // Given there are <start> cucumbers | |
| // When I eat <eat> cucumbers | |
| // Then I should have <left> cucumbers |
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
| //https://github.com/cucumber/cucumber/wiki/Scenario-Outlines | |
| //Scenario: eat 5 out of 20 | |
| // Given there are 20 cucumbers | |
| // When I eat 5 cucumbers | |
| // Then I should have 15 cucumbers | |
| //Scenario Outline: eating | |
| // Given there are <start> cucumbers | |
| // When I eat <eat> cucumbers | |
| // Then I should have <left> cucumbers |
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
| void Main() | |
| { | |
| GetExpression().Compile()(new Foo { Bar = new Bar { Abc = "A" }}).Dump(); | |
| GetExpression().Compile()(new Foo { Bar = new Bar { Abc = "B" }}).Dump(); | |
| } | |
| Expression<Func<Foo, bool>> GetExpression() | |
| { | |
| // Method takes Foo and uses an expression to first retrieve Bar |
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
| Extensions/* | |
| ActivateApplication.exe | |
| EntityFramework.dll | |
| Microsoft.TeamFoundation.TestPlatform.Client.dll | |
| Microsoft.TestTools.Cpp.targets | |
| Microsoft.VisualStudio.MSTest.TestWindow.dll | |
| Microsoft.VisualStudio.TestPlatform.BuildTasks.dll | |
| Microsoft.VisualStudio.TestPlatform.Client.dll | |
| Microsoft.VisualStudio.TestPlatform.Common.dll | |
| Microsoft.VisualStudio.TestPlatform.Core.dll |
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 static class TestHost | |
| { | |
| Application _app; | |
| Thread _appThread; | |
| public static void Start() | |
| { | |
| _appThread = new Thread(StartDispatcher); | |
| } | |
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 Settings | |
| { | |
| public static string SolutionPath = @"C:\_code\foo\src"; | |
| } | |
| /* | |
| Helper classes (to replace certain things in nUnit) | |
| // Replaces implicit attribute (kinda, instead only runs when debugger is attached) | |
| public class RunnableInDebugOnlyAttribute : FactAttribute |
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
| SyncCtx/IsThreadPool/ThreadId: System.Windows.Threading.DispatcherSynchronizationContext/False/8 | |
| SyncCtx/IsThreadPool/ThreadId: System.Windows.Threading.DispatcherSynchronizationContext/True/10 |
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
| <Window | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="MainWindow" Title="WPF3D" Width="534" | |
| Height="254"> | |
| <Grid> | |
| Plugin works well, except the first element, I am getting a space inserted before the window, and also I can't add/remove the namespace so the formatting is screwed. |