2019-12-29 14:36:28 -05:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2020-06-29 22:25:09 -07:00
|
|
|
/* Copyright (c) 2019-2020 FIRST. All Rights Reserved. */
|
2019-12-29 14:36:28 -05:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#include <thread>
|
|
|
|
|
|
2020-06-29 22:25:09 -07:00
|
|
|
#include <units/length.h>
|
|
|
|
|
#include <units/time.h>
|
|
|
|
|
#include <units/velocity.h>
|
|
|
|
|
|
2019-12-29 14:36:28 -05:00
|
|
|
#include "frc/SlewRateLimiter.h"
|
2020-09-27 13:27:53 -07:00
|
|
|
#include "frc/simulation/SimHooks.h"
|
2019-12-29 14:36:28 -05:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
|
|
TEST(SlewRateLimiterTest, SlewRateLimitTest) {
|
|
|
|
|
frc::SlewRateLimiter<units::meters> limiter(1_mps);
|
|
|
|
|
|
2020-09-27 13:27:53 -07:00
|
|
|
frc::sim::StepTiming(1.0_s);
|
2019-12-29 14:36:28 -05:00
|
|
|
|
|
|
|
|
EXPECT_TRUE(limiter.Calculate(2_m) < 2_m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(SlewRateLimiterTest, SlewRateNoLimitTest) {
|
|
|
|
|
frc::SlewRateLimiter<units::meters> limiter(1_mps);
|
|
|
|
|
|
2020-09-27 13:27:53 -07:00
|
|
|
frc::sim::StepTiming(1.0_s);
|
2019-12-29 14:36:28 -05:00
|
|
|
|
|
|
|
|
EXPECT_EQ(limiter.Calculate(0.5_m), 0.5_m);
|
|
|
|
|
}
|