Remove temporary testing file from git

This commit is contained in:
Jonas Dellinger 2020-05-02 15:03:15 +02:00
parent 2b5a826181
commit 221d7534fd
2 changed files with 2 additions and 18 deletions

2
.gitignore vendored
View File

@ -114,3 +114,5 @@ UpgradeLog*.XML
# Idea jetbrains
.idea/
.env
SpotifyAPI.Web.Tests/UtilTests/Test.cs

View File

@ -1,18 +0,0 @@
using System;
using System.Threading.Tasks;
using NUnit.Framework;
namespace SpotifyAPI.Web
{
[TestFixture]
public class Testing
{
[Test]
public async Task TestingYo()
{
var config = SpotifyClientConfig.CreateDefault("");
var spotify = new SpotifyClient(config);
}
}
}