STT-tensorflow/tensorflow/lite/micro/testing/util_test.cc
Nick Kreeger d39ff65920 Deprecate and remove testing/test_utils.h from TF Micro.
PiperOrigin-RevId: 335957483
Change-Id: I878ba86a6eaa01f331097240c019c57bb53688e8
2020-10-07 15:17:49 -07:00

30 lines
1.1 KiB
C++

/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
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.
==============================================================================*/
#include "tensorflow/lite/micro/testing/micro_test.h"
TF_LITE_MICRO_TESTS_BEGIN
TF_LITE_MICRO_TEST(ArgumentsExecutedOnlyOnce) {
float count = 0.;
// Make sure either argument is executed once after macro expansion.
TF_LITE_MICRO_EXPECT_NEAR(0, count++, 0.1f);
TF_LITE_MICRO_EXPECT_NEAR(1, count++, 0.1f);
TF_LITE_MICRO_EXPECT_NEAR(count++, 2, 0.1f);
TF_LITE_MICRO_EXPECT_NEAR(count++, 3, 0.1f);
}
TF_LITE_MICRO_TESTS_END