Skip to content
This repository has been archived by the owner on May 21, 2018. It is now read-only.

Commit

Permalink
Test methods renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
cskeppstedt committed Sep 20, 2013
1 parent 738f4dc commit 2f16b9b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions T4TS.Example/T4TS.tt.settings.t4
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,30 @@ readonly Dictionary<string, object> SettingsValues = new Dictionary<string, obje
// not specified by the TypeScriptInterfaceAttribute, the interface
// will belong to this module (may be empty, in which case the
// interface will be globally accessible).
// Type: string
// Type: string, defaults to "T4TS" if not specified.
{ "DefaultModule", null },

// The default value for the Optional flag for an interface member.
// If not specified by the TypeScriptInterfaceAttribute, the Optional
// flag will be set to this value. If the Optional flag is true, the
// generated member will look like "member?: type" instead of "member: type".
// Type: bool?
// Type: bool?, defaults to false if not specified.
{ "DefaultOptional", null },

// The default value for the CamelCase flag for an interface member name.
// If set to true, the first character of member names will be lower cased.
// Type: bool?
// Type: bool?, defaults to false if not specified.
{ "DefaultCamelCaseMemberNames", null },

// The default string to prefix interface names with. For instance, you
// might want to prefix the names with an "I" to get conventional
// interface names.
// Type: string
// Type: string, defaults to "" if not specified.
{ "DefaultInterfaceNamePrefix", null },

// The version of Typescript that is targeted. This is required to handle
// breaking changes in the language grammar and/or compiler.
// Type: Version
// Type: System.Version
{ "CompatibilityVersion", null }
};
#>
2 changes: 1 addition & 1 deletion T4TS.Tests/Output/MemberOutputAppenderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace T4TS.Tests
public class MemberOutputAppenderTests
{
[TestMethod]
public void RespectsCompatibilityVersion()
public void MemberOutputAppenderRespectsCompatibilityVersion()
{
var sb = new StringBuilder();

Expand Down
2 changes: 1 addition & 1 deletion T4TS.Tests/Output/ModuleOutputAppenderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace T4TS.Tests
public class ModuleOutputAppenderTests
{
[TestMethod]
public void RespectsCompatibilityVersion()
public void ModuleOutputAppenderRespectsCompatibilityVersion()
{
var sb = new StringBuilder();
var module = new TypeScriptModule
Expand Down

0 comments on commit 2f16b9b

Please sign in to comment.