File: test_getsection.cpp

package info (click to toggle)
libappimage 0.1.9%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,556 kB
  • sloc: ansic: 3,262; cpp: 1,049; sh: 40; makefile: 9
file content (27 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// system headers
#include <cmath>

// library headers
#include <gtest/gtest.h>

// local headers
#include <appimage/appimage.h>
#include "fixtures.h"

extern "C" {
    #include "getsection.h"
}


using namespace std;


// most simple derivative class for better naming of the tests in this file
class GetSectionCTest : public AppImageKitTest {};



int main(int argc, char **argv) {
    ::testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}