Add DISABLED_ prefix to test name
Use EXPECT_FLOAT_EQ
main.cpp
#include <gtest/gtest.h>| #!/bin/bash | |
| # Thanks to https://gist.github.com/Lewiscowles1986/ce14296e3f5222082dbaa088ca1954f7 | |
| if [ "$(whoami)" != "root" ]; then | |
| echo "Run script as ROOT please. (sudo !!)" | |
| exit | |
| fi | |
| echo "deb http://mirrordirector.raspbian.org/raspbian/ stretch main contrib non-free rpi" > /etc/apt/sources.list.d/stretch.list | |
| echo "APT::Default-Release \"jessie\";" > /etc/apt/apt.conf.d/99-default-release |
| #!/bin/bash | |
| if [ "$(whoami)" != "root" ]; then | |
| echo "Run script as ROOT please. (sudo !!)" | |
| exit | |
| fi | |
| apt-get update -y | |
| apt-get install -t stretch -y php7.0-soap | |
| apt-get autoremove -y |
| function serializeForm(form) | |
| { | |
| var elems = form[0].elements; | |
| var serialized = [], i, len = elems.length, str = ""; | |
| for (i = 0; i < len; i += 1) | |
| { | |
| var element = elems[i]; | |
| var type = element.type; | |
| var name = element.name; |
| function botonRisk(points) | |
| { | |
| return Math.max(0, (points - 100) * 10 / 50); | |
| } | |
| function boton() | |
| { | |
| $(".composer_rich_textarea").text("!boton"); | |
| $(".im_submit_send").trigger('mousedown'); |
| var area = 7; | |
| // BLUE | |
| /*var color = [ | |
| 0, 220, 220, | |
| 35, 255, 255 | |
| ];*/ | |
| // YELLOW | |
| var color = [ |
| #include <iostream> | |
| #include <array> | |
| #include <vector> | |
| #include <tuple> | |
| #include <utility> | |
| void printNumbers(int x, int y, int z) | |
| { | |
| std::cout << x << std::endl; | |
| std::cout << y << std::endl; |
| #include <iostream> | |
| #include <vector> | |
| #include <type_traits> | |
| #include <tuple> | |
| namespace sfinae | |
| { | |
| using success = std::true_type; | |
| using fail = std::false_type; |
| #include <iostream> | |
| #include <exception> | |
| #include <functional> | |
| #include <vector> | |
| #ifdef __EMSCRIPTEN__ | |
| #include <emscripten.h> | |
| #endif | |
| #ifndef __EMSCRIPTEN__ |