aboutsummaryrefslogtreecommitdiffstats
path: root/oni-csharp/snippets/csharp-mode/testm
blob: 4bd243d5267c995226b7a391da1ea38a8e3e92ad (plain)
1
2
3
4
5
6
7
8
9
# -*- mode: snippet -*-
# name: Test Method
# key: testm
# --
[TestMethod]
public void ${1:TestMethod}()
{
    $0
}