mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <hal/HAL.h>
|
|
|
|
#include "frc/DoubleSolenoid.h"
|
|
#include "frc/PneumaticsControlModule.h"
|
|
#include "frc/Solenoid.h"
|
|
|
|
namespace frc {
|
|
TEST(SolenoidCTRETest, ValidInitialization) {
|
|
Solenoid solenoid{0, 3, frc::PneumaticsModuleType::CTREPCM, 2};
|
|
EXPECT_EQ(2, solenoid.GetChannel());
|
|
|
|
solenoid.Set(true);
|
|
EXPECT_TRUE(solenoid.Get());
|
|
|
|
solenoid.Set(false);
|
|
EXPECT_FALSE(solenoid.Get());
|
|
}
|
|
|
|
TEST(SolenoidCTRETest, DoubleInitialization) {
|
|
Solenoid solenoid{0, 3, frc::PneumaticsModuleType::CTREPCM, 2};
|
|
EXPECT_THROW(Solenoid(0, 3, frc::PneumaticsModuleType::CTREPCM, 2),
|
|
std::runtime_error);
|
|
}
|
|
|
|
TEST(SolenoidCTRETest, DoubleInitializationFromDoubleSolenoid) {
|
|
DoubleSolenoid solenoid{0, 3, frc::PneumaticsModuleType::CTREPCM, 2, 3};
|
|
EXPECT_THROW(Solenoid(0, 3, frc::PneumaticsModuleType::CTREPCM, 2),
|
|
std::runtime_error);
|
|
}
|
|
|
|
TEST(SolenoidCTRETest, InvalidChannel) {
|
|
EXPECT_THROW(Solenoid(0, 3, frc::PneumaticsModuleType::CTREPCM, 100),
|
|
std::runtime_error);
|
|
}
|
|
|
|
TEST(SolenoidCTRETest, Toggle) {
|
|
Solenoid solenoid{0, 3, frc::PneumaticsModuleType::CTREPCM, 2};
|
|
solenoid.Set(true);
|
|
EXPECT_TRUE(solenoid.Get());
|
|
|
|
solenoid.Toggle();
|
|
EXPECT_FALSE(solenoid.Get());
|
|
|
|
solenoid.Toggle();
|
|
EXPECT_TRUE(solenoid.Get());
|
|
}
|
|
} // namespace frc
|