@@ -411,6 +411,7 @@ test("getInterface: specVersion 3.0", (t) => {
411411 getNamespace : ( ) => "namespace" ,
412412 getRootReader : ( ) => "rootReader" ,
413413 getReader : ( ) => "reader" ,
414+ getSourcePath : ( ) => "sourcePath" ,
414415 getCustomConfiguration : ( ) => "customConfiguration" ,
415416 isFrameworkProject : ( ) => "isFrameworkProject" ,
416417 hasBuildManifest : ( ) => "hasBuildManifest" , // Should not be exposed
@@ -456,6 +457,7 @@ test("getInterface: specVersion 3.0", (t) => {
456457 "getNamespace" ,
457458 "getRootReader" ,
458459 "getReader" ,
460+ "getSourcePath" ,
459461 "getCustomConfiguration" ,
460462 "isFrameworkProject" ,
461463 ] , "Correct methods are provided" ) ;
@@ -465,6 +467,7 @@ test("getInterface: specVersion 3.0", (t) => {
465467 t . is ( interfacedProject . getVersion ( ) , "version" , "getVersion function is bound correctly" ) ;
466468 t . is ( interfacedProject . getNamespace ( ) , "namespace" , "getNamespace function is bound correctly" ) ;
467469 t . is ( interfacedProject . getRootReader ( ) , "rootReader" , "getRootReader function is bound correctly" ) ;
470+ t . is ( interfacedProject . getSourcePath ( ) , "sourcePath" , "getSourcePath function is bound correctly" ) ;
468471 t . is ( interfacedProject . getReader ( ) , "reader" , "getReader function is bound correctly" ) ;
469472 t . is ( interfacedProject . getCustomConfiguration ( ) , "customConfiguration" ,
470473 "getCustomConfiguration function is bound correctly" ) ;
0 commit comments