@@ -8,19 +8,19 @@ namespace Python.Test
88
99// Classes with a constructor have their docstring set to the ctor signature.
1010// Test if a class has an explicit doc string it gets set correctly.
11- [ DocStringAttribute ( "DocWithCtorTest Class" ) ]
11+ [ DocString ( "DocWithCtorTest Class" ) ]
1212public class DocWithCtorTest
1313{
1414public DocWithCtorTest ( )
1515{
1616}
1717
18- [ DocStringAttribute ( "DocWithCtorTest TestMethod" ) ]
18+ [ DocString ( "DocWithCtorTest TestMethod" ) ]
1919public void TestMethod ( )
2020{
2121}
2222
23- [ DocStringAttribute ( "DocWithCtorTest StaticTestMethod" ) ]
23+ [ DocString ( "DocWithCtorTest StaticTestMethod" ) ]
2424public static void StaticTestMethod ( )
2525{
2626}
@@ -41,17 +41,17 @@ public static void StaticTestMethod(double a, int b)
4141}
4242}
4343
44- [ DocStringAttribute ( "DocWithoutCtorTest Class" ) ]
44+ [ DocString ( "DocWithoutCtorTest Class" ) ]
4545public class DocWithoutCtorTest
4646{
47- [ DocStringAttribute ( "DocWithoutCtorTest TestMethod" ) ]
47+ [ DocString ( "DocWithoutCtorTest TestMethod" ) ]
4848public void TestMethod ( )
4949{
5050}
5151
52- [ DocStringAttribute ( "DocWithoutCtorTest StaticTestMethod" ) ]
52+ [ DocString ( "DocWithoutCtorTest StaticTestMethod" ) ]
5353public static void StaticTestMethod ( )
5454{
5555}
5656}
57- }
57+ }