1
0
Fork 0
emacs-config/oni-csharp/snippets/csharp-mode/testm

9 lines
115 B
Text
Raw Normal View History

2020-03-03 02:59:42 +01:00
# -*- mode: snippet -*-
# name: Test Method
# key: testm
# --
[TestMethod]
public void ${1:TestMethod}()
{
$0
}