9 lines
115 B
Text
9 lines
115 B
Text
|
# -*- mode: snippet -*-
|
||
|
# name: Test Method
|
||
|
# key: testm
|
||
|
# --
|
||
|
[TestMethod]
|
||
|
public void ${1:TestMethod}()
|
||
|
{
|
||
|
$0
|
||
|
}
|