From 1a97a6ca1a397fee6780bd52f2154431e3c7162d Mon Sep 17 00:00:00 2001 From: Alexander Shabalin Date: Thu, 29 Oct 2020 19:58:59 +0300 Subject: [PATCH] Remove unneeded ArraysTest.cpp (#4479) --- .../runtime/src/main/cpp/ArraysTest.cpp | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 kotlin-native/runtime/src/main/cpp/ArraysTest.cpp diff --git a/kotlin-native/runtime/src/main/cpp/ArraysTest.cpp b/kotlin-native/runtime/src/main/cpp/ArraysTest.cpp deleted file mode 100644 index 978ecdc5d73..00000000000 --- a/kotlin-native/runtime/src/main/cpp/ArraysTest.cpp +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright 2010-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license - * that can be found in the LICENSE file. - */ - -#include "gtest/gtest.h" - -#include "Porting.h" - -// TODO: Replace these tests with real ones. - -TEST(ArraysTest, GoodTest) { - konan::consolePrintf("I'm a good test\n"); - EXPECT_EQ(true, true); -} - -TEST(ArraysTest, BadTest) { - GTEST_SKIP(); - konan::consolePrintf("I'm a bad test\n"); - EXPECT_EQ(true, false); -}