@@ -684,17 +684,41 @@ describe("GeneratorProfile tests", () => {
684684 x . setImplementationStateCountString ( "something" )
685685 expect ( x . implementationStateCountString ( ) ) . toBe ( "something" )
686686 } ) ;
687- test ( "Checking GeneratorProfile.interfaceVariableCountString ." , ( ) => {
687+ test ( "Checking GeneratorProfile.interfaceConstantCountString ." , ( ) => {
688688 const x = new libcellml . GeneratorProfile ( libcellml . GeneratorProfile . Profile . C )
689689
690- x . setInterfaceVariableCountString ( "something" )
691- expect ( x . interfaceVariableCountString ( ) ) . toBe ( "something" )
690+ x . setInterfaceConstantCountString ( "something" )
691+ expect ( x . interfaceConstantCountString ( ) ) . toBe ( "something" )
692692 } ) ;
693- test ( "Checking GeneratorProfile.implementationVariableCountString ." , ( ) => {
693+ test ( "Checking GeneratorProfile.implementationConstantCountString ." , ( ) => {
694694 const x = new libcellml . GeneratorProfile ( libcellml . GeneratorProfile . Profile . C )
695695
696- x . setImplementationVariableCountString ( "something" )
697- expect ( x . implementationVariableCountString ( ) ) . toBe ( "something" )
696+ x . setImplementationConstantCountString ( "something" )
697+ expect ( x . implementationConstantCountString ( ) ) . toBe ( "something" )
698+ } ) ;
699+ test ( "Checking GeneratorProfile.interfaceComputedConstantCountString." , ( ) => {
700+ const x = new libcellml . GeneratorProfile ( libcellml . GeneratorProfile . Profile . C )
701+
702+ x . setInterfaceComputedConstantCountString ( "something" )
703+ expect ( x . interfaceComputedConstantCountString ( ) ) . toBe ( "something" )
704+ } ) ;
705+ test ( "Checking GeneratorProfile.implementationComputedConstantCountString." , ( ) => {
706+ const x = new libcellml . GeneratorProfile ( libcellml . GeneratorProfile . Profile . C )
707+
708+ x . setImplementationComputedConstantCountString ( "something" )
709+ expect ( x . implementationComputedConstantCountString ( ) ) . toBe ( "something" )
710+ } ) ;
711+ test ( "Checking GeneratorProfile.interfaceAlgebraicCountString." , ( ) => {
712+ const x = new libcellml . GeneratorProfile ( libcellml . GeneratorProfile . Profile . C )
713+
714+ x . setInterfaceAlgebraicCountString ( "something" )
715+ expect ( x . interfaceAlgebraicCountString ( ) ) . toBe ( "something" )
716+ } ) ;
717+ test ( "Checking GeneratorProfile.implementationAlgebraicCountString." , ( ) => {
718+ const x = new libcellml . GeneratorProfile ( libcellml . GeneratorProfile . Profile . C )
719+
720+ x . setImplementationAlgebraicCountString ( "something" )
721+ expect ( x . implementationAlgebraicCountString ( ) ) . toBe ( "something" )
698722 } ) ;
699723 test ( "Checking GeneratorProfile.variableTypeObjectString." , ( ) => {
700724 const x = new libcellml . GeneratorProfile ( libcellml . GeneratorProfile . Profile . C )
0 commit comments