diff options
| author | agorodilov <[email protected]> | 2022-02-10 16:47:09 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:47:09 +0300 | 
| commit | 7a4979e6211c3e78c7f9041d4a9e5d3405343c36 (patch) | |
| tree | 9e9943579e5a14679af7cd2cda3c36d8c0b775d3 /library/cpp/testing | |
| parent | 676340c42e269f3070f194d160f42a83a10568d4 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/testing')
| -rw-r--r-- | library/cpp/testing/benchmark/bench.cpp | 10 | ||||
| -rw-r--r-- | library/cpp/testing/unittest/gtest.cpp | 2 | ||||
| -rw-r--r-- | library/cpp/testing/unittest/gtest.h | 2 | ||||
| -rw-r--r-- | library/cpp/testing/unittest/ut/main.cpp | 2 | ||||
| -rw-r--r-- | library/cpp/testing/unittest/utmain.cpp | 22 | 
5 files changed, 19 insertions, 19 deletions
diff --git a/library/cpp/testing/benchmark/bench.cpp b/library/cpp/testing/benchmark/bench.cpp index 08d8708005a..cb7ce6e47ff 100644 --- a/library/cpp/testing/benchmark/bench.cpp +++ b/library/cpp/testing/benchmark/bench.cpp @@ -63,9 +63,9 @@ namespace {              Register();          } -        TResult Run(const TOptions& opts) override; +        TResult Run(const TOptions& opts) override;  -        TStringBuf Name() const noexcept override { +        TStringBuf Name() const noexcept override {               return N;          } @@ -299,7 +299,7 @@ namespace {      class TConsoleReporter: public IReporter {      public: -        ~TConsoleReporter() override { +        ~TConsoleReporter() override {           }          void Report(TResult&& r) override { @@ -315,7 +315,7 @@ namespace {              Cout << "Name\tSamples\tIterations\tRun_time\tPer_iteration_sec\tPer_iteration_cycles" << Endl;          } -        ~TCSVReporter() override { +        ~TCSVReporter() override {           }          void Report(TResult&& r) override { @@ -346,7 +346,7 @@ namespace {      class TJSONReporter: public IReporter {      public: -        ~TJSONReporter() override { +        ~TJSONReporter() override {           }          void Report(TResult&& r) override { diff --git a/library/cpp/testing/unittest/gtest.cpp b/library/cpp/testing/unittest/gtest.cpp index ebad1ea4d67..61a562af233 100644 --- a/library/cpp/testing/unittest/gtest.cpp +++ b/library/cpp/testing/unittest/gtest.cpp @@ -42,7 +42,7 @@ namespace {              return Test.Name();          } -        TTestBase* ConstructTest() override { +        TTestBase* ConstructTest() override {               return new TCurrentTest(Test);          } diff --git a/library/cpp/testing/unittest/gtest.h b/library/cpp/testing/unittest/gtest.h index b6768b1bf0b..594feaca8a8 100644 --- a/library/cpp/testing/unittest/gtest.h +++ b/library/cpp/testing/unittest/gtest.h @@ -78,7 +78,7 @@ namespace testing {  #define EXPECT_EQ(A, B) UNIT_ASSERT_VALUES_EQUAL(A, B)  #define EXPECT_NE(A, B) UNIT_ASSERT_UNEQUAL(A, B) -#define EXPECT_LE(A, B) UNIT_ASSERT((A) <= (B)) +#define EXPECT_LE(A, B) UNIT_ASSERT((A) <= (B))   #define EXPECT_LT(A, B) UNIT_ASSERT((A) < (B))  #define EXPECT_GE(A, B) UNIT_ASSERT((A) >= (B))  #define EXPECT_GT(A, B) UNIT_ASSERT((A) > (B)) diff --git a/library/cpp/testing/unittest/ut/main.cpp b/library/cpp/testing/unittest/ut/main.cpp index e303e21e30a..1ecc4897a63 100644 --- a/library/cpp/testing/unittest/ut/main.cpp +++ b/library/cpp/testing/unittest/ut/main.cpp @@ -22,7 +22,7 @@ namespace {          {          } -        void SetUp() override { +        void SetUp() override {               I = 5;          } diff --git a/library/cpp/testing/unittest/utmain.cpp b/library/cpp/testing/unittest/utmain.cpp index 305bc6b40fc..2e13ff1145f 100644 --- a/library/cpp/testing/unittest/utmain.cpp +++ b/library/cpp/testing/unittest/utmain.cpp @@ -115,7 +115,7 @@ private:                 NUnitTest::GetResetTag();      } -    void OnBeforeTest(const TTest* test) override { +    void OnBeforeTest(const TTest* test) override {           NJson::TJsonValue event;          event.InsertValue("class", test->unit->name);          event.InsertValue("subtest", test->name); @@ -127,19 +127,19 @@ private:          Cerr.Flush();      } -    void OnUnitStart(const TUnit* unit) override { +    void OnUnitStart(const TUnit* unit) override {           NJson::TJsonValue event;          event.InsertValue("class", unit->name);          Trace("test-started", event);      } -    void OnUnitStop(const TUnit* unit) override { +    void OnUnitStop(const TUnit* unit) override {           NJson::TJsonValue event;          event.InsertValue("class", unit->name);          Trace("test-finished", event);      } -    void OnError(const TError* descr) override { +    void OnError(const TError* descr) override {           const TString comment = BuildComment(descr->msg, descr->BackTrace.data());          ErrorMessages.push_back(comment);      } @@ -270,7 +270,7 @@ public:          ForkTests = val;      } -    inline bool GetForkTests() const override { +    inline bool GetForkTests() const override {           return ForkTests;      } @@ -279,7 +279,7 @@ public:          SetIsTTY(IsForked || CalcIsTTY(stderr));      } -    inline bool GetIsForked() const override { +    inline bool GetIsForked() const override {           return IsForked;      } @@ -296,7 +296,7 @@ public:      }  private: -    void OnUnitStart(const TUnit* unit) override { +    void OnUnitStart(const TUnit* unit) override {           TraceProcessor->UnitStart(*unit);          if (IsForked) {              return; @@ -306,7 +306,7 @@ private:          }      } -    void OnUnitStop(const TUnit* unit) override { +    void OnUnitStop(const TUnit* unit) override {           TraceProcessor->UnitStop(*unit);          if (IsForked) {              return; @@ -325,7 +325,7 @@ private:          fprintf(stderr, "\n");      } -    void OnBeforeTest(const TTest* test) override { +    void OnBeforeTest(const TTest* test) override {           TraceProcessor->BeforeTest(*test);          if (IsForked) {              return; @@ -335,7 +335,7 @@ private:          }      } -    void OnError(const TError* descr) override { +    void OnError(const TError* descr) override {           TraceProcessor->Error(*descr);          if (!IsForked && ForkExitedCorrectly) {              return; @@ -400,7 +400,7 @@ private:          Cerr << d << "\n";      } -    void OnEnd() override { +    void OnEnd() override {           TraceProcessor->End();          if (IsForked) {              return;  | 
