@@ -341,14 +341,14 @@ public static ClassPath WebApiProjectRootClassPath(string solutionDirectory, str
341341 return new ClassPath ( solutionDirectory , Path . Combine ( $ "{ projectBaseName } { withSuffix } ") , className ) ;
342342 }
343343
344- public static ClassPath IntegrationTestProjectRootClassPath ( string solutionDirectory , string className , string projectBaseName )
344+ public static ClassPath IntegrationTestProjectRootClassPath ( string testDirectory , string className , string projectBaseName )
345345 {
346- return new ClassPath ( solutionDirectory , $ "{ projectBaseName } .{ IntegrationTestProjectSuffix } ", className ) ;
346+ return new ClassPath ( testDirectory , $ "{ projectBaseName } .{ IntegrationTestProjectSuffix } ", className ) ;
347347 }
348348
349- public static ClassPath UnitTestProjectRootClassPath ( string solutionDirectory , string className , string projectBaseName )
349+ public static ClassPath UnitTestProjectRootClassPath ( string testDirectory , string className , string projectBaseName )
350350 {
351- return new ClassPath ( solutionDirectory , $ "{ projectBaseName } .{ UnitTestProjectSuffix } ", className ) ;
351+ return new ClassPath ( testDirectory , $ "{ projectBaseName } .{ UnitTestProjectSuffix } ", className ) ;
352352 }
353353
354354 public static ClassPath SharedKernelProjectRootClassPath ( string solutionDirectory , string className )
@@ -366,9 +366,9 @@ public static ClassPath FunctionalTestProjectRootClassPath(string testDirectory,
366366 return new ClassPath ( testDirectory , $ "{ projectBaseName } .{ FunctionalTestProjectSuffix } ", className ) ;
367367 }
368368
369- public static ClassPath SharedTestProjectRootClassPath ( string solutionDirectory , string className , string projectBaseName )
369+ public static ClassPath SharedTestProjectRootClassPath ( string testDirectory , string className , string projectBaseName )
370370 {
371- return new ClassPath ( solutionDirectory , $ "{ projectBaseName } .{ SharedTestProjectSuffix } ", className ) ;
371+ return new ClassPath ( testDirectory , $ "{ projectBaseName } .{ SharedTestProjectSuffix } ", className ) ;
372372 }
373373
374374 public static ClassPath DtoClassPath ( string srcDirectory , string className , string entityPlural , string projectBaseName )
0 commit comments