diff --git a/legend-pure-core/legend-pure-m3-core/src/main/java/org/finos/legend/pure/m3/execution/test/TestCollection.java b/legend-pure-core/legend-pure-m3-core/src/main/java/org/finos/legend/pure/m3/execution/test/TestCollection.java index 44a210f14c..1d905205ee 100644 --- a/legend-pure-core/legend-pure-m3-core/src/main/java/org/finos/legend/pure/m3/execution/test/TestCollection.java +++ b/legend-pure-core/legend-pure-m3-core/src/main/java/org/finos/legend/pure/m3/execution/test/TestCollection.java @@ -34,8 +34,6 @@ import org.finos.legend.pure.m3.pct.shared.PCTTools; import org.finos.legend.pure.m4.coreinstance.CoreInstance; import org.finos.legend.pure.m4.coreinstance.primitive.StringCoreInstance; - -import static org.finos.legend.pure.m3.fct.shared.FCTTools.isFCTTest; import static org.finos.legend.pure.m3.pct.shared.PCTTools.isPCTTest; public class TestCollection @@ -412,10 +410,6 @@ else if (PCTTools.isPCTTest(child, processorSupport)) { this.testFunctions.add(child); } - else if (isFCTTest(child, processorSupport)) - { - this.testFunctions.add(child); - } } } else if (Instance.instanceOf(child, M3Paths.Package, processorSupport)) diff --git a/legend-pure-core/legend-pure-m3-core/src/main/java/org/finos/legend/pure/m3/fct/shared/FCTTools.java b/legend-pure-core/legend-pure-m3-core/src/main/java/org/finos/legend/pure/m3/fct/shared/FCTTools.java deleted file mode 100644 index 8f749ace3a..0000000000 --- a/legend-pure-core/legend-pure-m3-core/src/main/java/org/finos/legend/pure/m3/fct/shared/FCTTools.java +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright 2024 Goldman Sachs -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package org.finos.legend.pure.m3.fct.shared; - -import org.finos.legend.pure.m3.navigation.ProcessorSupport; -import org.finos.legend.pure.m3.navigation.profile.Profile; -import org.finos.legend.pure.m4.coreinstance.CoreInstance; - - -public class FCTTools -{ - public static final String FCT_PROFILE = "meta::pure::test::fct::FCT"; - - public static boolean isFCTTest(CoreInstance node, ProcessorSupport processorSupport) - { - return Profile.hasStereotype(node, FCT_PROFILE, "test", processorSupport); - } -}