Skip to content

Commit 002d1dd

Browse files
committed
test(integration-tests): remove integration tests for deprecated services
1 parent c6a4740 commit 002d1dd

File tree

1 file changed

+0
-35
lines changed

1 file changed

+0
-35
lines changed

src/IBM.Watson.IntegrationTests/CoreIntegrationTests.cs

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,11 @@
1515
*
1616
*/
1717

18-
using IBM.Watson.CompareComply.v1;
1918
using IBM.Watson.Discovery.v1;
2019
using IBM.Watson.LanguageTranslator.v3;
21-
using IBM.Watson.NaturalLanguageClassifier.v1;
2220
using IBM.Watson.NaturalLanguageUnderstanding.v1;
23-
using IBM.Watson.PersonalityInsights.v3;
2421
using IBM.Watson.SpeechToText.v1;
2522
using IBM.Watson.TextToSpeech.v1;
26-
using IBM.Watson.ToneAnalyzer.v3;
27-
using IBM.Watson.VisualRecognition.v3;
2823
using Microsoft.VisualStudio.TestTools.UnitTesting;
2924
using System;
3025

@@ -46,12 +41,6 @@ public void AssistantV2WithLoadedCredentials_Success()
4641
Assert.IsNotNull(service.GetAuthenticator());
4742
}
4843
[TestMethod]
49-
public void CompareComplyV1WithLoadedCredentials_Success()
50-
{
51-
CompareComplyService service = new CompareComplyService("2018-10-15");
52-
Assert.IsNotNull(service.GetAuthenticator());
53-
}
54-
[TestMethod]
5544
public void DiscoveryV1WithLoadedCredentials_Success()
5645
{
5746
DiscoveryService service = new DiscoveryService("2019-04-30");
@@ -64,24 +53,12 @@ public void LangaugeTranslatorV3WithLoadedCredentials_Success()
6453
Assert.IsNotNull(service.GetAuthenticator());
6554
}
6655
[TestMethod]
67-
public void NaturalLanguageClassifierV1WithLoadedCredentials_Success()
68-
{
69-
NaturalLanguageClassifierService service = new NaturalLanguageClassifierService();
70-
Assert.IsNotNull(service.GetAuthenticator());
71-
}
72-
[TestMethod]
7356
public void NaturalLanguageUnderstandingV1WithLoadedCredentials_Success()
7457
{
7558
NaturalLanguageUnderstandingService service = new NaturalLanguageUnderstandingService("2019-07-12");
7659
Assert.IsNotNull(service.GetAuthenticator());
7760
}
7861
[TestMethod]
79-
public void PersonalityInsightsV3WithLoadedCredentials_Success()
80-
{
81-
PersonalityInsightsService service = new PersonalityInsightsService("2017-10-13");
82-
Assert.IsNotNull(service.GetAuthenticator());
83-
}
84-
[TestMethod]
8562
public void SpeechToTextV1WithLoadedCredentials_Success()
8663
{
8764
SpeechToTextService service = new SpeechToTextService();
@@ -93,17 +70,5 @@ public void TextToSpeechV1WithLoadedCredentials_Success()
9370
TextToSpeechService service = new TextToSpeechService();
9471
Assert.IsNotNull(service.GetAuthenticator());
9572
}
96-
[TestMethod]
97-
public void ToneAnalyzeV3WithLoadedCredentials_Success()
98-
{
99-
ToneAnalyzerService service = new ToneAnalyzerService("2017-09-21");
100-
Assert.IsNotNull(service.GetAuthenticator());
101-
}
102-
[TestMethod]
103-
public void VisualRecognitionV3WithLoadedCredentials_Success()
104-
{
105-
VisualRecognitionService service = new VisualRecognitionService("2018-03-19");
106-
Assert.IsNotNull(service.GetAuthenticator());
107-
}
10873
}
10974
}

0 commit comments

Comments
 (0)