Skip to content

Instantly share code, notes, and snippets.

View simoneb's full-sized avatar

Simone Busoli simoneb

View GitHub Profile
@simoneb
simoneb / nunit-simple-async-task-test.cs
Created January 20, 2013 00:05
A simple async test returning Task
[Test]
public async Task OneSimpleTest()
{
var eightBall = new EightBall();
var answer = await eightBall.ShouldIChangeJob();
Assert.That(answer, Is.True);
}
@simoneb
simoneb / nunit-async-testcase.cs
Last active December 11, 2015 09:08
An async test case returning Task<int>
[TestCase(1, 2, Result = 3)]
public async Task<int> TestAddAsync(int a, int b)
{
return await SumAsync(a, b);
}
public async Task<int> SumAsync(int a, int b)
{
return await Task.FromResult(a) + await Task.FromResult(b);
}
@simoneb
simoneb / async-lambda-support.cs
Created January 20, 2013 11:50
Async lambda support in NUnit framework
[Test]
public async Task AsyncLambaSupport()
{
// throwing asynchronously
Assert.That(async () => await ThrowAsync(), Throws.TypeOf<InvalidOperationException>());
// returning values asynchronously
Assert.That(async () => await ReturnOneAsync(), Is.EqualTo(1));
// "After" works with async methods too
@simoneb
simoneb / gist:4997391
Created February 20, 2013 17:39
Path.GetDirectoryName behavior
Console.WriteLine(Path.GetDirectoryName(@"c:\windows\temp")); // c:\windows
Console.WriteLine(Path.GetDirectoryName(@"c:\windows\temp\")); // c:\windows\temp !!!
@simoneb
simoneb / readme
Last active December 14, 2015 03:29
TypeScript - Sublime Text2 build system configuration
1 - Copy the file typescript.sublime-build in %appdata%\Sublime Text 2\Packages\User
2 - Edit a .ts file
- CTRL+B will compile to .js and save to the same path as the .ts file
- CTRL+SHIFT+B will compile to .js and create+run an HTML page which embeds the script
@simoneb
simoneb / monadic-labeling.cs
Last active December 15, 2015 22:19
Monadically labeling a binary tree
<Query Kind="Program" />
void Main()
{
var tree = branch(
leaf("a"),
branch(
branch(
leaf("b"),
leaf("c")),
@simoneb
simoneb / NAnt.exe.config
Created October 21, 2013 19:33
NAnt configuration file modified to support .NET 4.5
<?xml version="1.0"?>
<configuration>
<!-- Leave this alone. Sets up configsectionhandler section -->
<configSections>
<section name="nant" type="NAnt.Core.ConfigurationSection, NAnt.Core" />
<section name="log4net" type="System.Configuration.IgnoreSectionHandler" />
</configSections>
<appSettings>
<!-- Used to indicate the location of the cache folder for shadow files -->
<add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
<project name="Hello World" default="build" basedir=".">
<description>The Hello World of build files</description>
<property name="debug" value="true" overwrite="false" />
<target name="build" description="greets you">
<echo message="hey there" />
</target>
</project>
@simoneb
simoneb / README.md
Last active August 29, 2015 13:56
MyWind.it dashing widget

Description

Dashing widget to show details about your Italian Wind mobile contracts. It supports both prepaid SIM cards and contracts and can display:

  • credit
  • voice traffic
  • text traffic
  • data traffic
  • expiries